-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared.css
80 lines (68 loc) · 1.19 KB
/
shared.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
body {
font-family: "Quicksand", sans-serif;
margin: 0;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 60px;
position: absolute;
width: 100%;
top: 0;
left: 0;
box-sizing: border-box;
}
#page-logo a {
padding: 10px;
font-family: "Oleo Script", sans-serif;
color: rgb(245, 243, 160);
font-size: 50px;
text-decoration: none;
text-transform: uppercase;
text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
/* #page-logo a:hover {
background-color: transparent;
} */
header ul {
display: flex;
}
header li {
margin-left: 20px;
}
header a {
color: rgb(255, 251, 0);
text-decoration: none;
font-size: 20px;
padding: 12px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
border-radius: 6px;
}
header nav a:hover {
color: rgb(77, 77, 77);
background-color: rgb(255, 251, 0);
}
footer {
background: linear-gradient(70deg, rgb(24, 24, 24), rgb(25, 29, 29));
padding: 36px 0;
}
footer ul {
display: flex;
justify-content: center;
/* padding: 40px; */
}
footer li {
width: 80px;
height: 80px;
margin: 0 50px;
}
footer img {
width: 100%;
height: 100%;
}