-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (52 loc) · 961 Bytes
/
styles.css
File metadata and controls
62 lines (52 loc) · 961 Bytes
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
body {
font-family: Georgia, "Times New Roman", Times, serif;
background-color: #252B48;
color: #F7E987
}
header {
text-align: center;
padding: 10px;
}
header a:link {
color: #F7E987;
background-color: transparent;
text-decoration: none;
}
header a:visited {
color: #FFA200;
background-color: transparent;
text-decoration: none;
}
header a:hover {
color: #F7E987;
background-color: transparent;
text-decoration: underline;
}
header a:active {
color: #FFA200;
background-color: transparent;
text-decoration: underline;
}
img.main-logo {
width: 200px;
height: 200px;
max-width: 100%;
border-radius: 10px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 10px;
}
nav li {
margin: 0 10px;
}
nav a {
text-decoration: none;
color: #F7E987;
transition: color 0.3s;
}
nav a:hover {
color: #fff;
}