-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_failures_style.css
71 lines (71 loc) · 1.2 KB
/
launch_failures_style.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
66
67
68
69
70
71
body {
margin: 0px;
padding: 0px;
}
* {
font-family: 'McLaren';
}
.main {
display: flex;
flex-flow: column wrap;
background-color: #263238;
width: 90%;
padding: 2.5% 5% 2.5% 5%;
text-align: center;
}
.main h1:nth-of-type(1) {
margin: 10px 0px 30px 0px;
}
.grid {
display: grid;
grid-template-rows: 30% 30% 30%;
grid-template-columns: 40% 40%;
grid-template-areas: "a b"
"c d"
"e f";
grid-gap: 20px;
}
img {
width: 100%;
height: 100%;
}
.sz {
grid-area: a;
}
.szimg {
grid-area: b;
}
.sts51 {
grid-area: c;
}
.sts51img {
grid-area: d;
}
.sts107 {
grid-area: e;
}
.sts107img {
grid-area: f;
}
@media (max-width: 650px) {
.main {
align-items: center;
}
.main h1 {
font-size: 30px;
}
.main h2 {
font-size: 20px;
}
.grid {
grid-template-areas: "a"
"b"
"c"
"d"
"e"
"f";
grid-template-rows: 15% 15% 15% 15% 15% 15%;
grid-template-columns: 40%;
grid-gap: 10px;
}
}