-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal-site.css
95 lines (80 loc) · 1.57 KB
/
personal-site.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
87
88
89
90
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,562;0,600;0,700;1,400;1,500;1,562;1,600;1,700&display=swap');
body {
background-color: #f9ffff;
font-family: 'Lora', serif;
color: black;
margin: 0;
width: 100%;
padding-top: 5%;
padding-bottom: 5%;
}
h1 {
color: #303030;
text-align: left;
font-size: 48px;
font-weight: normal;
font-family: 'Lora', serif;
margin: 0;
padding-left: 15%;
padding-right:15%;
text-decoration: underline;
text-decoration-style: solid;
text-decoration-color: #feb300;
}
h2 {
text-align: left;
font-size: 16px;
font-weight: lighter;
padding-left: 15%;
padding-right:15%;
}
h3 {
text-align: left;
font-size: 16px;
font-weight: lighter;
font-style: italic;
clear: both;
padding-left: 15%;
padding-right:15%;
padding-top: 2%;
}
p {
text-align: left;
margin-bottom: 0rem;
line-height: 1rem;
font-size: 16px;
padding-left: 15%;
padding-right:15%;
}
a {
color: #303030;
text-decoration: none;
}
a:hover{
color: #303030;
text-decoration: underline;
}
ul {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
align-items: center;
}
li {
float: left;
text-align: center;
font-size: 16px;
font-weight: lighter;
font-family: 'Lora', serif;
color: #00303F;
margin: 0;
text-decoration: none;
padding: 1rem 3rem;
}
li>a:hover {
text-decoration: underline;
text-decoration-color: #fccdd3;
text-align: center;
}
*/