-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (72 loc) · 998 Bytes
/
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
* {
margin: 0;
padding: 0;
}
.main-header {
background-color: #f7f7f7;
padding: 20px 40px;
margin-bottom: 60px;
}
body {
border-top: 10px #1098ad solid;
/* border-bottom: 10px red solid; */
font-family: sans-serif;
color: #444;
}
.container {
width: 800px;
margin: 0 auto;
}
h1 {
font-size: 26px;
text-transform: uppercase;
font-family: "Roboto", sans-serif;
margin-bottom: 30px;
}
h2 {
font-size: 35px;
margin-bottom: 30px;
}
h3 {
font-size: 30px;
margin-top: 40px;
margin-bottom: 30px;
}
p {
font-size: 20px;
line-height: 1.5;
margin-bottom: 15px;
}
h1,
h2,
h3 {
color: #1098ad;
}
ul,
ol {
margin-left: 50px;
margin-bottom: 20px;
}
li {
font-size: 20px;
margin-bottom: 5px;
}
a {
color: #1098ad;
}
a:link {
text-decoration: none;
}
a:hover {
color: orange;
text-decoration: underline;
}
a:active {
background-color: black;
font-style: italic;
}
nav a:link {
margin-right: 30px;
font-size: 20px;
color: #1098ad;
}