-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
100 lines (85 loc) · 1.69 KB
/
common.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
95
96
97
98
99
/* Contains all of the common css rules used by every page */
:root {
--kk-brown: #ad8463;
--kk-blue: #5d8fc2;
--kk-red: #c2695d;
--kk-yellow: #fff563;
--default-fonts: 'Nunito',Trebuchet MS,Arial, Helvetica, sans-serif;
}
html, body {
margin:0;
padding:0;
width: 100%;
height: 100%;
}
input, button {
cursor: pointer;
}
header {
height: 4em;
background-color: var(--kk-blue);
display: flex;
align-items: center;
box-shadow: 0px 5px 11px 0px rgba(0,0,0,0.7);
z-index: 5;
}
#header-title {
height: 85%;
padding: 4px;
box-sizing: border-box;
margin-left: 5px;
border-radius: 5px;
background: transparent;
border-style: none;
}
#header {
font-family: var(--default-fonts);
font-size: 2em;
display: inline-block;
vertical-align: top;
line-height: 1.75em;
margin-top: auto;
margin-bottom: auto;
margin-left: 5px;
float: left;
color: white;
text-shadow: 2px 2px 2px #000000;
}
#header-icon {
margin-right: 5px;
object-fit: contain;
width: auto;
height: 100%;
display: inline-block;
float: left;
}
#radio-icon {
display: inline;
}
#about-button {
background: transparent;
border-style: none;
font-family: var(--default-fonts);
font-size: 0.6em;
color: white;
position: absolute;
right: 20px;
}
#about-button:hover h1 {
text-shadow: 2px 2px 2px #000000;
}
footer {
background-color: lavender;
height: 2em;
position: fixed;
width: 100vw;
bottom: 0;
left: 0;
}
footer p {
font-family: var(--default-fonts);
font-size: 0.7em;
height: 1em;
margin-left: 10px;
margin-top: 5px;
}