summaryrefslogtreecommitdiff
path: root/static/css/navbar.css
blob: 9109333c1f018587ae6b9623af201e7a1447a023 (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

@font-face {
    font-family: "HWYGOTH";
    src: url("/static/fonts/HWYGOTH.ttf");
}

/* Add a black background color to the top navigation */
.topnav {
background-color: #163314;
overflow: hidden;
flex-shrink: 0;
display: flex;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family:HWYGOTH;
    cursor: pointer;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #2a572a;
    color: white;
}
/* Create a right-aligned (split) link inside the navigation bar */
.topnav a.split {
    float: right;
    background-color: #163314;
    color: white;
}
.topnav a.split:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.collection-title {
    background-color: #2a572a;
    color: white;
    cursor: pointer;
    flex: 1;
}