nginxconfig.io/resources/scss/_header.scss

166 lines
2.2 KiB
SCSS
Raw Normal View History

2018-07-01 13:07:38 +00:00
header {
background-color: #000;
2019-05-15 21:30:11 +00:00
padding: 0.5rem 0;
2018-07-01 13:07:38 +00:00
text-align: center;
margin-bottom: 0.5rem;
color: #fff;
font-size: 2.2rem;
2019-05-19 09:36:26 +00:00
.container {
position: relative;
}
2019-05-19 07:02:13 +00:00
.loader {
position: absolute;
top: 5px;
left: 50%;
pointer-events: none;
margin-left: -230px;
.spinner {
width: 50px;
height: 50px;
position: relative;
.double-bounce1,
.double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #999;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
animation-delay: -1.0s;
}
}
}
2018-07-01 13:07:38 +00:00
.logo {
height: 3rem;
2019-05-15 21:30:11 +00:00
margin-bottom: 0.5rem;
2018-07-01 13:07:38 +00:00
}
2018-12-30 14:22:38 +00:00
2019-05-19 09:36:26 +00:00
.github {
@include media-breakpoint-up(lg) {
position: absolute;
right: 0;
top: 10px;
}
.github-link {
text-align: center;
font-size: 1rem;
margin-bottom: 0.5rem;
a {
color: #fff;
}
small {
font-size: 90%;
}
svg {
height: 1.2rem;
vertical-align: -4px;
g {
fill: #fff;
}
}
}
.github-star {
width: 144px;
height: 30px;
display: block;
border: 0;
overflow: hidden;
margin: 0 auto 0.25rem;
@include media-breakpoint-up(lg) {
margin-left: auto;
}
}
}
2019-05-15 21:30:11 +00:00
.sites {
@include media-breakpoint-up(lg) {
margin-top: -1rem;
}
}
.sites,
2018-12-30 14:22:38 +00:00
.presets {
2019-05-15 21:30:11 +00:00
font-size: 0;
text-align: center;
2018-12-30 14:22:38 +00:00
2019-05-15 21:30:11 +00:00
@include media-breakpoint-up(lg) {
text-align: left;
}
}
2018-12-30 14:22:38 +00:00
2019-05-15 21:30:11 +00:00
.title {
color: #eee;
font-size: 0.9rem;
font-style: italic;
vertical-align: -5px;
margin-right: 4px;
text-align: center;
2018-12-30 14:22:38 +00:00
2019-05-15 21:30:11 +00:00
@include media-breakpoint-up(lg) {
display: inline-block;
width: 60px;
}
}
2018-12-30 14:22:38 +00:00
2019-05-15 21:30:11 +00:00
.btn-outline-light {
box-shadow: none !important;
border-color: #999;
margin: 0 3px 4px;
2018-12-30 14:22:38 +00:00
2019-05-15 21:30:11 +00:00
&.active,
&:hover {
background-color: #fff;
border-color: #fff;
svg {
2018-12-30 14:22:38 +00:00
path {
2019-05-15 21:30:11 +00:00
fill: #000;
2018-12-30 14:22:38 +00:00
}
}
}
2019-05-15 21:30:11 +00:00
svg {
height: 1.1rem;
vertical-align: text-bottom;
path {
fill: #ddd;
transition: fill 0.15s ease-in-out;
}
}
small {
margin-left: 0.2rem;
font-weight: 700;
vertical-align: 1px;
}
.close {
float: none;
vertical-align: -2px;
color: #666;
line-height: 0;
margin-right: -0.3rem;
font-size: 1.3rem;
}
2018-12-30 14:22:38 +00:00
}
2018-07-01 13:07:38 +00:00
}