forked from COPS-CSOC-2022/CSOC22-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (55 loc) · 1.09 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.container {
max-width: 1000px;
margin: auto auto auto auto;
border-radius: 15px;
}
#display {
text-align: right;
height: 70px;
line-height: 70px;
padding: 16px 8px;
font-size: 25px;
background-color: rgb(255, 255, 255);
border-radius: 15px;
margin-bottom: 10px;
}
.buttons {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
color: white;
font: bold;
}
body {
background-color: black;
}
h1 {
text-align: center;
font: bold;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: white;
}
.buttons>div {
border-top: 1px solid #999;
border-right: 1px solid#999;
}
.button {
border: 0.5px solid #999;
line-height: 100px;
text-align: center;
font-size: 25px;
cursor: pointer;
border-radius: 15px;
}
#equal {
background-color: blue;
color: white;
}
#clear {
background-color: rgb(248, 64, 95);
color: black;
}
.button:hover {
background-color: rgb(173, 171, 243);
color: white;
transition: 0.5s ease-in-out;
}