-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
86 lines (73 loc) · 1.12 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
body {
font-family: 'Alegreya Sans', sans-serif;
font-size: 22px;
padding: 50px;
text-align: center;
}
header, nav, main {
margin: auto;
text-align: center;
width: 40rem;
}
h1 {
font-size: 300%;
font-weight: bold;
text-align: center;
}
.subtitle {
font-size: 150%;
font-style: italic;
text-align: center;
}
h2 {
padding-top: 1em;
}
.logo {
display: block;
margin: 20px auto;
text-align: center;
width: 200px;
}
p {
line-height: 140%;
padding: 14px 0;
text-align: justify;
}
a {
border-bottom: 1px dashed #999;
color: black;
text-decoration: none;
}
a:hover {
color: #977;
}
ol > li {
display: inline;
padding-right: 1em;
}
ul {
line-height: 140%;
padding: 0 14px;
text-align: justify;
}
ul > li {
margin: 7px 28px;
}
.button[href] {
background-color: #28a745;
border: 1px solid green;
border-color: #28a745;
border-radius: 1ex;
color: white;
cursor: pointer;
display: inline-block;
margin: 0.5ex;
padding: 1ex 1.5ex;
text-align: center;
text-decoration: none;
}
.button[href]:hover {
background-color: #218838;
border-color: #218838;
color: white;
}