-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (89 loc) · 1.42 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: rgb(126, 10, 10);
}
a,
h1,
h2,
h3 {
text-decoration: none;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.persistent-header {
background-color: rgb(126, 10, 10);
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 3%;
}
.footer-nav {
text-align: center;
}
.footer-list {
color: white;
}
.links-list li {
display: inline-block;
}
.links-list a {
color: white;
}
.main-content {
width: 75%;
margin: 0 auto;
background-color: red;
padding: 10px 60px 45px;
}
.main-content > h2 {
color: black;
font-weight: 300;
margin-bottom: 10px;
}
.main-content > hr {
margin-bottom: 25px;
}
.main-content section {
background-color: grey;
margin-bottom: 30px;
padding-top: 20px;
}
.main-content section hr {
width: 90%;
margin: 0 auto;
border-color: red;
}
.main-content section h3 {
margin-left: 5%;
font-size: 28px;
font-weight: 400;
}
.section-content {
padding: 13px;
padding-left: 5%;
}
.section-content p {
margin: 10px;
margin-left: 0;
line-height: 1.4;
font-size: 18px;
font-family: sans-serif;
}
.section-content img {
float: right;
margin-left: 10px;
margin-top: 10px;
}
section:nth-of-type(2) .section-content img {
float: left;
margin-left: 0;
margin-right: 10px;
}
h4 {
text-align: center;
color: white;
}