-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia-queries.css
65 lines (53 loc) · 1.04 KB
/
media-queries.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
/* Media Queries */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
body {
overflow-x: hidden;
}
.side-panel h1 {
margin-left: 0;
margin-top: 0;
transform: rotate(0);
transform-origin: 0;
}
.side-panel {
width: 100vw;
height: 40vh;
}
.text {
max-width: 100%;
position: absolute;
bottom: 35px;
padding-right: 30px;
}
.label.copyright {
position: fixed;
}
.side-panel .description {
margin-bottom: 35px;
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 1.2;
margin-bottom: 20px;
letter-spacing: 0.02em;
}
.grid-container {
width: 100%;
margin-top: 0px;
float: left;
padding-left: 25px;
padding-right: 25px;
padding-top: 35vh;
padding-bottom: 60px;
}
.grid-item {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
}
}
/* Medium devices (landscape tablets, 768px to 1080px) */
@media screen and (min-width: 768px) and (max-width: 1080px) {
}