forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer.css
More file actions
45 lines (36 loc) · 705 Bytes
/
Copy pathcontainer.css
File metadata and controls
45 lines (36 loc) · 705 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
.container {
margin-left: auto;
margin-right: auto;
transition: all var(--animation-speed-fast) ease-in-out;
}
.is-layout-fluid .container,
.is-layout-wide .container,
.is-layout-thin .container {
width: calc(100vw - 4em);
}
@media (min-width: 550px) {
.is-layout-wide .container {
width: 80vw;
}
.is-layout-thin .container {
width: 60vw;
}
}
@media (min-width: 900px) {}
@media (min-width: 1100px) {
.is-layout-wide .container {
width: 75vw;
}
.is-layout-thin .container {
width: 40vw;
}
}
@media (min-width: 1600px) {
.is-layout-wide .container {
width: 70vw;
}
.is-layout-thin .container {
width: 30vw;
}
}
@media (min-width: 1600px) {}