-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid-section.css
More file actions
100 lines (96 loc) · 2.48 KB
/
grid-section.css
File metadata and controls
100 lines (96 loc) · 2.48 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.grid-section {
display: grid;
grid-template-columns: repeat(4, 230px);
grid-template-rows: repeat(2, 450px);
grid-gap: 30px;
}
.grid-item {
display: flex;
justify-content: center;
align-items: flex-end;
color: white;
font-size: 30px;
font-weight: 300;
padding-bottom: 30px;
background-repeat: no-repeat;
background-position: bottom;
background-size: cover;
box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}
.grid-item-mobile {
display: none;
}
.grid-item-1 {
background-image: url("./images/desktop/image-deep-earth.jpg");
}
.grid-item-2 {
background-image: url("./images/desktop/image-night-arcade.jpg");
}
.grid-item-3 {
background-image: url("./images/desktop/image-soccer-team.jpg");
}
.grid-item-4 {
background-image: url("./images/desktop/image-grid.jpg");
}
.grid-item-5 {
background-image: url("./images/desktop/image-from-above.jpg");
}
.grid-item-6 {
background-image: url("./images/desktop/image-pocket-borealis.jpg");
}
.grid-item-7 {
background-image: url("./images/desktop/image-curiosity.jpg");
}
.grid-item-8 {
background-image: url("./images/desktop/image-fisheye.jpg");
}
/* Media queries for responsiveness */
@media only screen and (max-width: 768px) {
.grid-section {
display: none;
}
.grid-section-mobile {
display: grid;
grid-template-rows: repeat(8, 125px);
grid-row-gap: 25px;
margin-bottom: 50px;
}
.grid-item-mobile {
display: flex;
justify-content: flex-start;
align-items: center;
color: white;
font-size: 25px;
font-weight: 300;
/* padding-bottom: 30px; */
padding-left: 20px;
background-repeat: no-repeat;
background-position: bottom;
background-size: cover;
box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}
.grid-item-mobile-1 {
background-image: url("./images/mobile/image-deep-earth.jpg");
}
.grid-item-mobile-2 {
background-image: url("./images/mobile/image-night-arcade.jpg");
}
.grid-item-mobile-3 {
background-image: url("./images/mobile/image-soccer-team.jpg");
}
.grid-item-mobile-4 {
background-image: url("./images/mobile/image-grid.jpg");
}
.grid-item-mobile-5 {
background-image: url("./images/mobile/image-from-above.jpg");
}
.grid-item-mobile-6 {
background-image: url("./images/mobile/image-pocket-borealis.jpg");
}
.grid-item-mobile-7 {
background-image: url("./images/mobile/image-curiosity.jpg");
}
.grid-item-mobile-8 {
background-image: url("./images/mobile/image-fisheye.jpg");
}
}