blob: e41d3f5f0def27d15112d4a104199c400abee36e (
plain) (
blame)
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
|
body{
font-family: 'Roboto', sans-serif;
background: #333;
color: white
}
.title{
font-size: 50px;
text-align: center;
}
#title{
border: solid white 5px;
}
#navigation{
padding-top: 0px;
padding-left: 0px;
padding-right: 0px;
padding-bottom: 15px;
margin: -1px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: whitesmoke;
}
li.logo{
font-weight: bold;
color: black;
}
li.nav {
float: left;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
a.nav{
color: black;
text-decoration: none;
}
li a:hover {
background-color: gray;
}
.active {
background-color: #68a2ff;
color: black;
}
.center {
text-align: center;
}
|