-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
104 lines (87 loc) · 1.37 KB
/
styles.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html {
box-sizing: border-box;
font-family: "Open Sans", serif;
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: url("fonts/OpenSans-Regular.ttf");
}
body {
color: #ddd;
background-color: #111;
max-width: 1000px;
margin: auto;
vertical-align: middle;
}
header {
text-align: center;
margin: 20px auto;
}
main {
width: fit-content;
text-align: center;
margin: auto;
align-content: flex-start;
text-align: left;
}
main>section {
border: 2px solid #ddd;
padding: 10px 30px;
margin: 10px;
border-radius: 20px;
}
a {
color: #ddd;
text-decoration: none;
}
a:hover {
color: #fff;
}
.contact-info {
text-decoration: none;
display: block;
margin: 5px auto;
}
.icon {
height: 0.9em;
width: 0.9em;
margin: 0 0.4em
}
h2 {
margin-top: 3px;
margin-bottom: 15px;
}
h3 {
margin-top: 15px;
margin-bottom: 3px;
}
.sub-h3 {
margin-top: 3px;
margin-bottom: 3px;
color: #bbb;
}
ul {
margin-top: 3px;
margin-bottom: 3px;
}
li {
text-align: justify;
margin-top: 8px;
margin-bottom: 8px;
}
p {
margin-top: 3px;
margin-bottom: 3px;
}
footer {
color: #888;
font-size: 0.8em;
text-align: center;
margin: 30px auto 20px auto;
}
footer>a {
color: #888;
}