-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (64 loc) · 1.6 KB
/
style.css
File metadata and controls
64 lines (64 loc) · 1.6 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
.logo {
height: 1.6rem;
vertical-align: middle;
}
.logo:hover {
cursor: pointer;
}
.body {
background-color: white;
color: greenyellow;
margin: 0px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.main {
margin: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar ul{
list-style-type: none;
background-color: greenyellow;
padding: 0px;
margin: 0px;
overflow: hidden;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar2 ul{
list-style-type: none;
background-color: greenyellow;
padding: 0px;
margin: 0px;
overflow: hidden;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar a{
color: white;
text-decoration: none;
padding: 15px;
display: block;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar2 a{
color: white;
text-decoration: none;
padding: 15px;
display: block;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar a:hover {
background-color: rgb(98, 146, 26);
}
.navbar li {
float: left;
}
.navbar2 a:hover {
background-color: rgb(98, 146, 26);
}
.navbar2 li {
float: left;
}
@media (prefers-color-scheme: dark) {
.body { background-color: rgb(120, 178, 32); color: #eee; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;}
}