-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (44 loc) · 797 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
body {
font-size: 16px;
line-height: 26px;
box-sizing: border-box;
width: 90%;
margin: 5%;
color: black;
font-family: 'Proza Libre';
background-color: snow;
}
h1{
border-top: 1px solid black;
padding-top: 20px;
font-size: 48px;
line-height: 46px;
font-weight: 100;
}
h1, h2, h3, h4, h5 {
font-family: 'Roboto Slab';
color: black;
}
a{
color: turquoise;
display: inline-block;
}
a:hover{
color: black;
}
small {
display: block;
border-top: 3px solid turquoise;
padding-top: 10px;
color: black;
}
.code_eg{
font-size: 9px;
text-transform: uppercase;
letter-spacing: 0.4px;
padding-left: 6px;
padding-right: 6px;
color: turquoise;
background-color: white;
text-decoration: none;
}