-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbannerdisplaydesktop.css
More file actions
32 lines (32 loc) · 931 Bytes
/
bannerdisplaydesktop.css
File metadata and controls
32 lines (32 loc) · 931 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
@media (min-width: 800px) {
#entirePageGrid {
display: grid;
grid-template-columns: [first] 100% [end];
grid-template-rows: [row1] 3.91187rem [row2] 3rem [row3] 15rem [row4] auto [end];
align-items: stretch;
}
}
@media (min-width: 1000px) {
#entirePageGrid {
display: grid;
grid-template-columns: [first] 100% [end];
grid-template-rows: [row1] 3.91187rem [row2] 3rem [row3] 20rem [row4] auto [end];
align-items: stretch;
}
}
@media (min-width: 1200px) {
#entirePageGrid {
display: grid;
grid-template-columns: [first] 100% [end];
grid-template-rows: [row1] 3.91187rem [row2] 3rem [row3] 23rem [row4] auto [end];
align-items: stretch;
}
}
@media (min-width: 1500px) {
#entirePageGrid {
display: grid;
grid-template-columns: [first] 100% [end];
grid-template-rows: [row1] 3.91187rem [row2] 3rem [row3] 26rem [row4] auto [end];
align-items: stretch;
}
}