summaryrefslogtreecommitdiffstats
path: root/static/base/css/menu.css
blob: 6354be6b725f9b1218294c3851624298a9f413aa (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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* Harmonic Flow web site */
/* Public domain 2017. All rights waived */

.navbar {
    background-color: #333;
    border-color: #1A1A1A;
    border-style: none none solid none;
    border-width: thin;
    color: white;
    height: auto;
}

.navbar > h1 {
    display: inline-block;
    margin: 0px;
}

.branding {
    position: relative;
    overflow: hidden;
}

.branding:link,
.branding:visited {
    background-image: url("../img/back-btn-bg.png");
    background-position: bottom;
    background-repeat: no-repeat;
    display: inline-block;
    height: 55px;
    width: 55px;
}

.branding:active,
.branding:focus,
.branding:hover {
    background-image: url("../img/back-btn-bg.png");
    background-position: top;
}

.menu {
    display: block;
    padding: 0px;
    position: relative;
}

.menu ul {
    background-color: transparent;
    border-style: none;
    box-shadow: none;
    display: block;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.menu > ul > li,
.submenu > ul > li {
    display: block;
    padding: 0px;
    position: relative;
}

.menu-item:link,
.menu-item:visited {
    background-color: transparent;
    background-image: url("../img/link-arrow.png");
    background-position: 97% 50%;
    background-repeat: no-repeat;
    border-color: #1A1A1A;
    border-style: solid none none none;
    border-width: thin;
    color: white;
    display: block;
    line-height: 55px;
    margin: 0px;
    padding: 0px 0px 0px 10px;
    text-align: left;
}

.menu-item:active,
.menu-item:focus,
.menu-item:hover,
.menu-item-active:link,
.menu-item-active:visited {
    color: #F4BB15;
}

.submenu {
    background-color: #434343;
    display: block;
    padding: 0px;
    position: relative;
}

.submenu .menu-item:link,
.submenu .menu-item:visited {
    background-color: transparent;
    display: block;
    font-size: inherit;
    line-height: 55px;
    padding: 0px 25px;
}

.submenu .menu-item:active,
.submenu .menu-item:focus,
.submenu .menu-item:hover {
    background-color: transparent;
    background-image: url("../img/link-arrow.png");
    background-position: 97% 50%;
    background-repeat: no-repeat;
    display: block;
    font-size: inherit;
    line-height: 55px;
    padding: 0px 25px;
}

.submenu-triangle {
    display: none;
}

.menu-btn:link {
    display: none;
}