-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 1013 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
:root {
--bs-font-sans-serif: "Roboto", sans-serif;
--bs-body-color: #262626;
--bs-body-bg: #fff;
--bs-primary: #00467a;
--bs-primary-rgb: 0, 70, 122;
--bs-body-font-weight: 300;
--bs-link-color: #00467a;
--bs-link-hover-color: #ff8f00;
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
h1 {
font-family: "Merriweather", serif;
font-size: calc(1.75rem + 1.75vw);
font-weight: 700;
color: #000;
}
h2 {
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.025rem;
}
h2 > span {
font-weight: 300;
}
h3,
h4,
h5,
h6 {
font-family: "Merriweather", serif;
font-weight: 700;
}
p.lead {
font-family: "Merriweather", serif;
font-weight: 400;
}
a.aviso {
font-family: "Merriweather", serif;
font-size: 1rem;
text-decoration: none;
}
hr {
width: 5rem;
margin: 1rem auto 3rem auto;
border: 1px solid #2f909d;
opacity: 1;
}
em {
font-weight: 400;
font-style: normal;
}