80 lines
No EOL
1.6 KiB
SCSS
80 lines
No EOL
1.6 KiB
SCSS
/* header */
|
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic);
|
|
#logo {
|
|
float: left;
|
|
margin-right: 10px;
|
|
font-size: 1.7em;
|
|
font-family: 'Gotham-Book',"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
color: #f21e40;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
padding-top: 9px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#logo img {
|
|
width: 125px;
|
|
}
|
|
|
|
.navbar-custom {
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid rgba(255,255,255,.3);
|
|
text-transform: uppercase;
|
|
font-family: 'Gotham-Bold',"Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
letter-spacing: 1px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.navbar-custom .navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.navbar-custom .navbar-brand:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.navbar-custom .navbar-brand .navbar-toggle {
|
|
padding: 4px 6px;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
}
|
|
|
|
.navbar-custom .navbar-brand .navbar-toggle:focus,
|
|
.navbar-custom .navbar-brand .navbar-toggle:active {
|
|
outline: 0;
|
|
}
|
|
|
|
.navbar-custom a {
|
|
color: #f21e40;
|
|
}
|
|
|
|
.navbar-custom .nav li a {
|
|
-webkit-transition: background .3s ease-in-out;
|
|
-moz-transition: background .3s ease-in-out;
|
|
transition: background .3s ease-in-out;
|
|
}
|
|
|
|
.navbar-custom .nav li a:hover {
|
|
outline: 0;
|
|
color: #333;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.navbar-custom .nav li a:focus,
|
|
.navbar-custom .nav li a:active {
|
|
outline: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.navbar-custom .nav li.active {
|
|
outline: 0;
|
|
}
|
|
|
|
.navbar-custom .nav li.active a {
|
|
color: #333;
|
|
background-color: rgba(255,255,255,.3);
|
|
}
|
|
|
|
.navbar-custom .nav li.active a:hover {
|
|
color: #f21e40;
|
|
} |