|
|
@ -46,6 +46,7 @@ input, textarea, select { |
|
|
|
border: 1px solid $primary_color; |
|
|
|
border-radius: $border_radius; |
|
|
|
margin: 0 $padding/4; |
|
|
|
transition: all 150ms; |
|
|
|
|
|
|
|
&:hover { |
|
|
|
background: $primary_color; |
|
|
@ -58,10 +59,12 @@ input, textarea, select { |
|
|
|
width: $header_width; |
|
|
|
min-width: $header_width; |
|
|
|
position: relative; |
|
|
|
z-index: 100; |
|
|
|
|
|
|
|
@include media-phablet { |
|
|
|
width: $header_width_mobile; |
|
|
|
min-width: $header_width_mobile; |
|
|
|
z-index: 1; |
|
|
|
} |
|
|
|
|
|
|
|
a { |
|
|
@ -76,6 +79,7 @@ input, textarea, select { |
|
|
|
display: block; |
|
|
|
text-align: center; |
|
|
|
position: relative; |
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
font-family: Lobster, serif; |
|
|
|
color: #FFF; |
|
|
@ -177,6 +181,21 @@ input, textarea, select { |
|
|
|
top: -2px; |
|
|
|
} |
|
|
|
|
|
|
|
.badge { |
|
|
|
position: absolute; |
|
|
|
color: #FFF; |
|
|
|
top: 5px; |
|
|
|
right: 0; |
|
|
|
background: $primary_color; |
|
|
|
border-radius: 50%; |
|
|
|
width: 18px; |
|
|
|
height: 18px; |
|
|
|
line-height: 16px; |
|
|
|
text-align: center; |
|
|
|
font-size: 10px; |
|
|
|
font-weight: lighter; |
|
|
|
} |
|
|
|
|
|
|
|
.wrapper { |
|
|
|
width: 320px; |
|
|
|
|
|
|
@ -210,6 +229,17 @@ input, textarea, select { |
|
|
|
text-align: center; |
|
|
|
opacity: .4; |
|
|
|
} |
|
|
|
|
|
|
|
li { |
|
|
|
padding: $padding; |
|
|
|
|
|
|
|
.added { |
|
|
|
font-weight: lighter; |
|
|
|
font-size: 11px; |
|
|
|
display: block; |
|
|
|
text-align: right; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -513,6 +543,43 @@ input, textarea, select { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* Question */ |
|
|
|
.question { |
|
|
|
position: fixed; |
|
|
|
z-index: 20000; |
|
|
|
color: #FFF; |
|
|
|
padding: $padding; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
&.show { |
|
|
|
opacity: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.inner { |
|
|
|
width: 100%; |
|
|
|
max-width: 500px; |
|
|
|
} |
|
|
|
|
|
|
|
h3 { |
|
|
|
display: block; |
|
|
|
margin-bottom: 20px; |
|
|
|
font-size: 1.4em; |
|
|
|
font-weight: lighter; |
|
|
|
} |
|
|
|
|
|
|
|
a { |
|
|
|
border-color: #FFF; |
|
|
|
color: #FFF; |
|
|
|
|
|
|
|
&:hover { |
|
|
|
background: #FFF; |
|
|
|
color: $primary_color; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* Mask */ |
|
|
|
.mask{ |
|
|
|
background: rgba(0,0,0, .8); |
|
|
@ -525,9 +592,22 @@ input, textarea, select { |
|
|
|
left: 0; |
|
|
|
opacity: 0; |
|
|
|
transition: opacity 1000ms; |
|
|
|
pointer-events: none; |
|
|
|
|
|
|
|
$spinner_size: 22px; |
|
|
|
|
|
|
|
.message { |
|
|
|
color: #FFF; |
|
|
|
text-align: center; |
|
|
|
position: absolute; |
|
|
|
top: 50%; |
|
|
|
left: 50%; |
|
|
|
width: 320px; |
|
|
|
margin: -($spinner_size*2 + 5px) 0 0 -160px; |
|
|
|
font-size: 16px; |
|
|
|
opacity: .5; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner { |
|
|
|
position: absolute; |
|
|
|
top: 50%; |
|
|
@ -544,6 +624,7 @@ input, textarea, select { |
|
|
|
} |
|
|
|
|
|
|
|
&.show { |
|
|
|
pointer-events: auto; |
|
|
|
opacity: 1; |
|
|
|
|
|
|
|
.spinner { |
|
|
|