-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_style.css
59 lines (49 loc) · 907 Bytes
/
my_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
@import url('https://fonts.cdnfonts.com/css/avenir-next-lt-pro');
@import url('https://fonts.cdnfonts.com/css/sabon');
@charset "UTF-8";
html { font-size: 16px; }
h1,h2,h3 {
font-style: normal;
font-weight: 600;
}
body {
font-family: "Sabon", serif;
font-size: 1em;
background-color: #f3f7ff;
}
h1 {
font-size: 2.4em;
font-family: "Avenir Next", sans-serif;
}
h2 {
font-size: 1.6em;
font-family: "Avenir Next", sans-serif;
text-transform: uppercase;
color: #000;
}
h3 {
font-size: 1.4em;
font-family: "Avenir Next", sans-serif;
}
hr {
display: block;
height: 1px;
width: 55%;
border: 0;
border-top: 3px solid #d74e45;
margin: 1em 0;
padding: 0;
}
a:link {
text-decoration-color: #d74e45;
text-underline-offset: 3px;
}
a:visited {
text-decoration-color: #d74e45;
}
a:hover {
color: #d74e45;
}
a:active {
color: #d74e45;
}