Newer
Older
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
124
125
126
127
128
129
130
131
132
133
134
135
header {
background: #014a8f;
background: linear-gradient(45deg, #2f2f3f 10%, #014a8f 50%);
}
header h3 {
font-weight: 300;
letter-spacing: 0.1em;
text-transform: uppercase;
}
header h3 span {
background: url(./../assets/images/vlass-icon.png) no-repeat center left;
background-size: contain;
}
header nav a, .dark header nav a {
color: #fff !important;
padding: 1.25em 1.5em;
font-size: 1.1em;
margin: 0;
letter-spacing: 0.1rem;
font-weight: 300;
text-transform: uppercase;
}
header nav a.active {
background: #012c56;
}
header nav a:hover {
color: #fff;
text-decoration: underline;
box-shadow: none;
background: #014a8f;
}
nav#main_nav {
background: #473b67;
box-shadow: inset -20px 0 20px -20px rgba(0, 0, 0, 0.5);
}
nav#main_nav a, nav#sticky_nav a {
display: block;
padding: 1.25em 1.5em;
font-size: 1.2em;
line-height: 1em;
color: #fff !important;
text-transform: uppercase;
letter-spacing: 0.1rem;
font-weight: 400;
}
nav#main_nav a:hover, nav#sticky_nav a:hover {
background: none;
text-decoration: underline;
background: #573e7b;
}
nav#main_nav a.active, nav#sticky_nav a.active {
background: #6e5ba0;
color: #ffffff;
}
nav#main_nav .btn-group {
opacity: 0.5;
}
nav#sticky_nav {
display: none;
}
nav#sticky_nav.sticky {
display: flex;
width: 100%;
position: fixed;
top: 0;
left: 0;
box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
z-index: 99;
margin: 0;
background: #473b67;
}
nav#sticky_nav div {
background-color: #2f2f3f;
}
nav#sticky_nav a {
padding: 1em 1.5em !important;
font-size: 1em !important;
}
/*
button.title-button {
margin: 0.5em 0 0 0;
}
table.table thead {
background: #5f5f5f;
color: #fff;
}
table.table caption {
padding: 0.25em 0;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #fff;
}
*/
footer {
background: none;
color: #ccc;
border-top: 1px solid #595969;
}
/* mobile */
@media (max-width: 767px) {
header nav a {
padding: 1.25em;
font-size: 1em;
}
nav#main_nav {
box-shadow: none;
}
nav#main_nav ul li {
display: inline-block;
}
}