blob: e67ac5f0544ff7b170389a40ee47b12b3f6d1e82 (
plain)
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
|
ul {
list-style-type: none;
}
#top-bar{
background-color: #9d9090;
width: 100%;
display: flex;
display: -webkit-flex;
flex-direction: row;
-webkit-flex-direction: row;
justify-content: space-between;
-webkit-justify-content: space-between;
align-items: flex-end;
-webkit-align-items: flex-end;
}
#top-bar nav {
flex: 0 1 auto;
-webkit-flex: 0 1 auto;
}
#top-bar img {
height: 20%;
width: auto;
}
#top-bar nav ul {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #9d9090;
}
#top-bar ul li {
float: right;
}
#top-bar ul li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
vertical-align: bottom;
}
#top-bar ul li a:hover {
background-color: lightblue;
}
footer {
bottom: 0;
}
|