blob: 829989017048f8f6eda06e8a52e7de9674022bd5 (
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
124
125
126
127
128
129
130
131
132
133
|
/*
* 4.0 Navigation
*/
.navbar-custom {
border: 0;
margin: 0;
padding-top: 10px;
padding-bottom: 10px;
background-color: #000;
transition: all 0.2s linear 0s;
.navbar-nav {
li {
margin: 0;
}
>li>a {
color: #fff;
text-transform: uppercase;
font-size: 12px;
font-weight: 400;
border-bottom: 1px solid transparent;
&:focus,
&:hover {
background-color: transparent;
border-color: rgba(255, 255, 255, 0.5);
}
}
>.active>a {
border-color: rgba(255, 255, 255, 0.5);
}
}
}
.navbar-toggle {
border: 0;
border-radius: 0;
margin-top: 2px;
.icon-bar {
background-color: #fff;
}
}
.navbar-solid {
background-color: #000 !important;
padding: 0 !important;
transition: all 0.2s linear 0s;
}
.site-branding {
float: left;
margin-top: 0;
margin-left: 10px;
.logo {
color: #fff;
font-size: 14px;
font-weight: 700;
margin-right: 5px;
letter-spacing: 3px;
text-transform: uppercase;
&:focus,
&:hover {
text-decoration: none;
}
}
}
/*
* 5.0 Site Header
*/
.site-header {
width: 100%;
height: 100%;
min-height: 100vh;
position: relative;
text-align: center;
background: url(../images/backgrounds/header.jpg) no-repeat center center / cover;
&::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.intro {
color: #fff;
position: relative;
text-align: center;
text-transform: uppercase;
width: 100%;
z-index: 1;
padding: 0 15px;
h2 {
margin-top: 0px;
font-size: 25px;
font-weight: 300;
}
h1 {
margin-top: 0px;
font-size: 30px;
}
p {
font-size: 20px;
margin-bottom: 10px;
font-weight: 300;
}
}
}
@media (min-width:768px) {
.navbar-custom {
background-color: transparent;
padding-top: 30px;
}
.site-branding {
margin-top: 6px;
margin-left: 0;
}
}
|