-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrockets_developed_style.css
63 lines (63 loc) · 1.04 KB
/
rockets_developed_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
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%;
}
.main div:nth-child(1) {
text-align: center;
}
h1 {
margin: 10px 0px 0px 0px;
}
.main > div+div {
display: flex;
flex-flow: column wrap;
align-items: flex-start;
}
.gapbar {
width: 100%;
height: 10px;
background-color: black;
}
.content > img:nth-of-type(1) {
width: 30%;
height: 500px;
margin-bottom: 10px;
}
.content > img:nth-of-type(2) {
width: 60%;
height: 20%;
margin-bottom: 10px;
}
.content > img:nth-of-type(4) {
width: 60%;
margin-bottom: 10px;
}
.content > img:nth-of-type(5) {
width: 60%;
margin-bottom: 10px;
}
.content > img:nth-of-type(6) {
width: 60%;
margin-bottom: 10px;
}
@media (max-width: 650px) {
.main {
align-items: center;
}
.main p {
font-size: 12px;
}
.main > div+div {
align-items: center;
}
}