-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 771 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 771 Bytes
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
* {
margin: 0px;
padding: 0px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
* body {
font-family: sans-serif;
font-size: 35px;
}
.container {
height: 100vh;
display: -ms-grid;
display: grid;
place-content: center;
}
#size {
position: absolute;
top: 55%;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
color: red;
}
@media (max-width: 1600px) {
.container {
background-color: #bee1e6;
}
}
@media (max-width: 992px) {
.container {
background-color: #52b788;
}
}
@media (max-width: 768px) {
.container {
background-color: #fff1e6;
}
}
@media (max-width: 576px) {
.container {
background-color: #cdb4db;
}
}
/*# sourceMappingURL=style.css.map */