-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (53 loc) · 1.13 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
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
margin: 0;
padding: 0;
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
display: grid;
align-content: center;
justify-content: center;
background-color: rgb(243, 236, 236);
height: 100vh;
}
.grid-container {
display: grid;
background-color: white;
width: 30vw;
height: 90vh;
}
.display-container {
display: flex;
background-color: black;
align-items: center;
justify-content: center;
width: 100%;
height: 20vh;
}
.grid-button-container {
display: grid;
height: 70vh;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(5,1fr);
}
.button-element-container, .button-element-container2 {
display: flex;
border: solid 1px rgb(175, 168, 168);
align-items: center;
justify-content: center;
}
.button-element-container:hover, .button-element-container2:hover {
background-color: rgb(172, 169, 169);
}
#erase-icon {
width: 39px;
height: 35px;
}
.display-container {
color: rgb(255, 255, 255);
}