-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (79 loc) · 1.48 KB
/
styles.css
File metadata and controls
95 lines (79 loc) · 1.48 KB
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
/* header fonts - Yeseva One */
/* body fonts - atkinson hyperlegible */
body,p,button {
font-family: 'Atkinson Hyperlegible', sans-serif;
background-color: #dcdcdc;
color: #2d3b2f;
margin: 0;
padding: 20px;
font-size: 1.1rem;
letter-spacing: 0.05rem;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3 {
font-family: 'Yeseva One', cursive;
}
.btn {
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.btn-primary {
background-color: #3c280d;
border: 2px solid #3c280d;
}
.btn-outline {
background-color: transparent;
border: 2px solid #3c280d;
color: #3c280d;
}
.abril {
font-family: 'Abril Fatface', cursive;
}
.atkinson {
font-family: 'Atkinson Hyperlegible', sans-serif;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 20px;
}
logo {
/* max-width: 50px; */
height: auto;
display: inline;
font-size: 1.2rem;
}
.nav-links {
display: flex;
justify-content: space-between;
margin-top: 20px;
list-style-type: none;
}
.nav-links a {
color: #4C6856;
font-weight: bold;
font-size: 1.2rem;
text-decoration: none;
margin-left: 30px;
}
.nav-links a:hover {
text-decoration: underline;
text-decoration-style: wavy;
}
.p, .h2 {
margin: 0;
padding: 0;
padding-bottom: 10px;
}
.p {
font-size: 1.3rem;
line-height: 1.6;
}