-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (47 loc) · 951 Bytes
/
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
body {
display: flex;
align-items: center;
justify-content: center;
margin: 0px;
padding: 100px;
background-color: black;
}
button {
color: white;
font-size: 30px;
padding: 10px;
border-radius: 10px;
margin: 10px;
}
#container {
background-color: grey;
border-radius: 10px;
display: grid;
grid-template-columns: 100px 100px 100px 100px 100px;
grid-template-rows: 100px 100px 100px 100px 100px;
padding: 25px 25px 25px 25px;
}
#display {
font-size: 50px;
color: white;
background-color: black;
display: flex;
flex-direction: column;
justify-content: space-around;
text-align: right;
font-weight: bold;
border-radius: 5px;
width: 500px;
height: 100px;
grid-column-start: 1;
grid-column-end: 6;
}
#grey {
background-color: dimgray;
}
#orange {
background-color: orange;
}
#light {
background-color: lightgray;
}