|
|
@ -1,3 +1,4 @@ |
|
|
|
@import "bumbleberry"; |
|
|
|
@import "settings"; |
|
|
|
|
|
|
|
body { |
|
|
@ -6,8 +7,9 @@ body { |
|
|
|
z-index: -1; |
|
|
|
} |
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, label, button, .button { |
|
|
|
h1, h2, h3, h4, h5, label, button, .button, dt, th, nav.sub-menu { |
|
|
|
@include font-family(secondary); |
|
|
|
font-weight: normal; |
|
|
|
} |
|
|
|
|
|
|
|
h2 { |
|
|
@ -49,11 +51,32 @@ a { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
table { |
|
|
|
margin-bottom: 2em; |
|
|
|
margin-left: 1em; |
|
|
|
background-color: #F8F8F8; |
|
|
|
width: 100%; |
|
|
|
@include default-box-shadow(top, 2, true); |
|
|
|
|
|
|
|
th, td { |
|
|
|
text-align: left; |
|
|
|
padding: 0.25em 0.5em; |
|
|
|
|
|
|
|
&:first-child { |
|
|
|
padding-left: 1em; |
|
|
|
} |
|
|
|
|
|
|
|
&:last-child { |
|
|
|
padding-right: 1em; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
button, |
|
|
|
.button { |
|
|
|
position: relative; |
|
|
|
display: inline-block; |
|
|
|
color: #FFF; |
|
|
|
color: $white; |
|
|
|
background-color: $colour-1; |
|
|
|
border: 0; |
|
|
|
padding: 0.5em 1em; |
|
|
@ -122,16 +145,28 @@ button, |
|
|
|
|
|
|
|
#main &[type="submit"] { |
|
|
|
background-color: $colour-5; |
|
|
|
|
|
|
|
&[value="send"] { |
|
|
|
background-color: $colour-4; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&.register { |
|
|
|
background-color: $colour-4; |
|
|
|
text-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5); |
|
|
|
//@include _(text-shadow, 0 0 0.15em rgba(0, 0, 0, 0.5)); |
|
|
|
} |
|
|
|
|
|
|
|
form.logout & { |
|
|
|
background-color: #666; |
|
|
|
} |
|
|
|
|
|
|
|
#main &.modify { |
|
|
|
background-color: $colour-5; |
|
|
|
} |
|
|
|
|
|
|
|
#main &.delete { |
|
|
|
background-color: $colour-4; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
a.button { |
|
|
@ -143,6 +178,61 @@ a.button { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
nav.sub-menu { |
|
|
|
display: inline-block; |
|
|
|
margin: 2rem 0 0; |
|
|
|
text-align: center; |
|
|
|
|
|
|
|
a { |
|
|
|
margin: 0 1em 0.5em 0; |
|
|
|
background-color: #E8E8E8; |
|
|
|
color: #888; |
|
|
|
display: inline-block; |
|
|
|
padding: 0.25em 0.75em 0.333em; |
|
|
|
font-size: 0.9em; |
|
|
|
border: 1px solid #AAA; |
|
|
|
border-bottom-width: 0.2em; |
|
|
|
//@include _(text-shadow, 0 0.125em 0.25em #BBB); |
|
|
|
@include _(border-radius, 0.15em); |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
@include _(text-shadow, 0 0.05em 0.05em #FFF); |
|
|
|
|
|
|
|
&:hover, &:active, &:focus { |
|
|
|
background-color: #D8D8D8; |
|
|
|
} |
|
|
|
|
|
|
|
&.current { |
|
|
|
background-color: #CCC; |
|
|
|
color: #666; |
|
|
|
padding: 0.333em 0.75em 0.25em; |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@include breakpoint(medium) { |
|
|
|
border: 1px solid #AAA; |
|
|
|
background-color: #AAA; |
|
|
|
border-bottom-width: 0.125em; |
|
|
|
@include _(border-radius, 0.15em); |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
|
|
|
|
a { |
|
|
|
border: 0; |
|
|
|
margin: 0 1px 0 0; |
|
|
|
float: left; |
|
|
|
@include _(border-radius, 0); |
|
|
|
@include _(box-shadow, none); |
|
|
|
|
|
|
|
&:last-child { |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
textarea { |
|
|
|
$line-height: 2em; |
|
|
|
display: block; |
|
|
@ -234,7 +324,7 @@ input { |
|
|
|
} |
|
|
|
|
|
|
|
&.empty { |
|
|
|
background-color: #FFF;//#E8E8E8; |
|
|
|
background-color: $white;//#E8E8E8; |
|
|
|
background-image: |
|
|
|
#{$fn}repeating-linear-gradient( |
|
|
|
-45deg, #DDD, |
|
|
@ -258,13 +348,13 @@ input { |
|
|
|
z-index: 1; |
|
|
|
padding: 0.15em 0.5em; |
|
|
|
background-color: transparent; |
|
|
|
//@include _(box-shadow, inset 0 0 1em 1em #E8E8E8); |
|
|
|
//background-image: repeating-linear-gradient(45deg, #FFF, #FFF 5px, #E8E8E8 1px, ); |
|
|
|
//background-image: #{$fn}linear-gradient(45deg, #DDD 25%, transparent 25%, transparent 75%, #EEE 75%, #EEE 100%);//, #{$fn}linear-gradient(45deg, #EEE 25%, transparent 25%, transparent 75%, #EEE 75%, #EEE 100%); |
|
|
|
//background-image: linear-gradient(-45deg, black 12.5%, transparent 12.5%, transparent 50%, black 50%, black 87.5%, transparent 87.5%, transparent); |
|
|
|
border: 0; |
|
|
|
} |
|
|
|
|
|
|
|
&.big input { |
|
|
|
font-size: 2em; |
|
|
|
} |
|
|
|
|
|
|
|
&:focus, &:active { |
|
|
|
label { |
|
|
|
color: #333; |
|
|
@ -294,6 +384,7 @@ input { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.check-box-field, |
|
|
|
.radio-button-field { |
|
|
|
@include clearfix; |
|
|
|
margin-bottom: 1em; |
|
|
@ -301,10 +392,7 @@ input { |
|
|
|
|
|
|
|
label { |
|
|
|
float: left; |
|
|
|
width: 7em; |
|
|
|
height: 5em; |
|
|
|
@include default-box-shadow(top); |
|
|
|
//background-color: lighten($colour-4, 25); |
|
|
|
background-color: $colour-2; |
|
|
|
text-align: center; |
|
|
|
position: relative; |
|
|
@ -314,7 +402,6 @@ input { |
|
|
|
@include _(transition, #{'transform, background-color 100ms, 100ms ease-in-out, ease-in-out'}); |
|
|
|
|
|
|
|
&:hover { |
|
|
|
//background-color: #EEE; |
|
|
|
@include _(transform, scale(1.1)); |
|
|
|
} |
|
|
|
|
|
|
@ -338,7 +425,7 @@ input { |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
border: 0.5em solid #FFF; |
|
|
|
border: 0.5em solid $white; |
|
|
|
border-left: none; |
|
|
|
border-top: none; |
|
|
|
width: 1em; |
|
|
@ -354,9 +441,17 @@ input { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
margin-bottom: 0.75em; |
|
|
|
fill: #FFF; |
|
|
|
fill: $white; |
|
|
|
stroke: rgba(0, 0, 0, 0.667); |
|
|
|
stroke-width: 0.05em; |
|
|
|
|
|
|
|
+ svg { |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
right: 0; |
|
|
|
@include _(opacity, 0.75); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
input { |
|
|
@ -382,6 +477,32 @@ input { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.check-box-field { |
|
|
|
label { |
|
|
|
color: $white; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
@include _(text-stroke, 0.5px #000); |
|
|
|
|
|
|
|
@include before { |
|
|
|
font-size: 0.6em; |
|
|
|
bottom: -0.8em; |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
font-size: 0.3em; |
|
|
|
bottom: -0.5em; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.radio-button-field { |
|
|
|
label { |
|
|
|
width: 7em; |
|
|
|
height: 5em; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.date-span { |
|
|
|
margin-left: 1em; |
|
|
|
|
|
|
@ -398,9 +519,10 @@ input { |
|
|
|
input { |
|
|
|
@include default-box-shadow(top); |
|
|
|
background-color: $colour-1; |
|
|
|
color: #FFF; |
|
|
|
color: $white; |
|
|
|
border: 0; |
|
|
|
padding: 0 0.25em; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
@include _(text-stroke, 0.5px #000) |
|
|
|
} |
|
|
@ -410,6 +532,34 @@ input { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
form { |
|
|
|
&.composition { |
|
|
|
textarea { |
|
|
|
height: 16em; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.actions { |
|
|
|
text-align: center; |
|
|
|
margin: 0 1em; |
|
|
|
|
|
|
|
button, .button { |
|
|
|
margin: 0 0.25em; |
|
|
|
} |
|
|
|
|
|
|
|
&.right { |
|
|
|
text-align: right; |
|
|
|
|
|
|
|
.note { |
|
|
|
float: left; |
|
|
|
color: $colour-1; |
|
|
|
font-weight: bold; |
|
|
|
font-size: 1.25em; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
::-webkit-resizer { |
|
|
|
visibility: hidden; |
|
|
|
cursor: nw-resize; |
|
|
@ -417,7 +567,7 @@ input { |
|
|
|
|
|
|
|
@include selection { |
|
|
|
background-color: rgba($colour-2, 0.75); |
|
|
|
color: rgba(#FFF, 0.75); |
|
|
|
color: rgba($white, 0.75); |
|
|
|
} |
|
|
|
|
|
|
|
#main-nav { |
|
|
@ -425,7 +575,7 @@ input { |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
width: 100%; |
|
|
|
background-color: #FFF; |
|
|
|
background-color: $white; |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
z-index: 1; |
|
|
|
|
|
|
@ -441,6 +591,7 @@ input { |
|
|
|
margin: 0; |
|
|
|
padding: 1em 0; |
|
|
|
float: left; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
text-decoration: none; |
|
|
|
font-size: 2.25vw; |
|
|
@ -448,8 +599,8 @@ input { |
|
|
|
border: 0; |
|
|
|
width: 33.33%; |
|
|
|
background-color: $colour-5; |
|
|
|
color: #FFF; |
|
|
|
text-shadow: 0 0 0.35em #000; |
|
|
|
color: $white; |
|
|
|
@include _(text-shadow, 0 0 0.35em #000); |
|
|
|
|
|
|
|
@include after { |
|
|
|
display: none; |
|
|
@ -480,8 +631,14 @@ input { |
|
|
|
.actions { |
|
|
|
text-align: center; |
|
|
|
position: absolute; |
|
|
|
top: rems(1.5); |
|
|
|
top: rems(0.5); |
|
|
|
right: rems(1); |
|
|
|
font-size: 3.1vw; |
|
|
|
|
|
|
|
> a, > form { |
|
|
|
vertical-align: middle; |
|
|
|
margin: 0 0 0.5em; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -489,11 +646,11 @@ input { |
|
|
|
position: relative; |
|
|
|
z-index: -1; |
|
|
|
max-width: (rems(68) - $sidebar-width) * 2; |
|
|
|
background-color: #FFF; |
|
|
|
background-color: $white; |
|
|
|
padding-bottom: rems(2); |
|
|
|
|
|
|
|
article { |
|
|
|
padding: rems(3.5) 7.5%; |
|
|
|
padding: rems(2.5) 7.5%; |
|
|
|
|
|
|
|
&.supplementary { |
|
|
|
//background-color: $colour-3; |
|
|
@ -611,6 +768,37 @@ $header-tilt: 8deg; |
|
|
|
.colour-5 { fill: $colour-5; } |
|
|
|
} |
|
|
|
|
|
|
|
@if capable_of(css-mixblendmode) { |
|
|
|
position: relative; |
|
|
|
|
|
|
|
body.home & { |
|
|
|
$colours: ($colour-2, $colour-5, $colour-4, $colour-3, $colour-1); |
|
|
|
$gradient: (90deg); |
|
|
|
$w: 100% / length($colours); |
|
|
|
$i: 0; |
|
|
|
@each $colour in $colours { |
|
|
|
$gradient: append($gradient, #{$colour} #{$w * $i}, comma); |
|
|
|
$i: $i + 1; |
|
|
|
$gradient: append($gradient, #{$colour} #{$w * $i}, comma); |
|
|
|
} |
|
|
|
background-image: linear-gradient($gradient); |
|
|
|
} |
|
|
|
|
|
|
|
.cover { |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
z-index: -1; |
|
|
|
background-size: inherit; |
|
|
|
background-position: inherit; |
|
|
|
-webkit-filter: saturate(25%); |
|
|
|
filter: saturate(25%); |
|
|
|
@include _(mix-blend-mode, multiply); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&.no-image, |
|
|
|
&.short { |
|
|
|
h1 { |
|
|
@ -619,7 +807,7 @@ $header-tilt: 8deg; |
|
|
|
margin: 0.25em 0.5em; |
|
|
|
position: relative; |
|
|
|
z-index: 1; |
|
|
|
text-shadow: 0 0 0.15em #000; |
|
|
|
@include _(text-shadow, 0 0 0.15em #000); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -655,7 +843,7 @@ $header-tilt: 8deg; |
|
|
|
.details { |
|
|
|
position: relative; |
|
|
|
display: inline-block; |
|
|
|
color: #FFF; |
|
|
|
color: $white; |
|
|
|
@include _(text-shadow, 0 0.2em 0.5em rgba(32, 32, 32, 0.75)); |
|
|
|
} |
|
|
|
|
|
|
@ -710,7 +898,7 @@ $header-tilt: 8deg; |
|
|
|
|
|
|
|
.github { |
|
|
|
position: relative; |
|
|
|
background-color: #FFF; |
|
|
|
background-color: $white; |
|
|
|
border-radius: 0.25em; |
|
|
|
border: 0.1em solid #DDD; |
|
|
|
padding: 0.5em 0.5em 0.5em 2em; |
|
|
@ -755,6 +943,7 @@ $header-tilt: 8deg; |
|
|
|
color: #E7E7E7; |
|
|
|
text-align: center; |
|
|
|
line-height: 1.5em; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
@include _(transition, 150ms background-color ease-in-out); |
|
|
|
cursor: pointer; |
|
|
@ -785,7 +974,7 @@ $header-tilt: 8deg; |
|
|
|
bottom: 0; |
|
|
|
padding: 1em 4em; |
|
|
|
overflow: auto; |
|
|
|
background-color: #FFF; |
|
|
|
background-color: $white; |
|
|
|
z-index: 10; |
|
|
|
@include _(transform, scale(0)); |
|
|
|
@include _(transform-origin, 6.25em _calc('100% - 2em', 98%)); |
|
|
@ -815,9 +1004,10 @@ $header-tilt: 8deg; |
|
|
|
display: block; |
|
|
|
position: static; |
|
|
|
background-color: $colour-1; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
line-height: 1.5em; |
|
|
|
color: #FFF; |
|
|
|
color: $white; |
|
|
|
|
|
|
|
@include before { |
|
|
|
content: ''; |
|
|
@ -881,6 +1071,29 @@ $header-tilt: 8deg; |
|
|
|
margin-top: 2em; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.lingua-franca-navigation { |
|
|
|
width: 25%; |
|
|
|
@include clearfix; |
|
|
|
|
|
|
|
ul { |
|
|
|
padding: 0; |
|
|
|
list-style: none; |
|
|
|
font-weight: normal; |
|
|
|
@include font-family(secondary); |
|
|
|
|
|
|
|
ul { |
|
|
|
margin-left: 1em; |
|
|
|
margin-bottom: 1em; |
|
|
|
@include font-family(primary); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#lingua-franca-keys { |
|
|
|
width: 75%; |
|
|
|
float: right; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#main-nav { |
|
|
@ -973,7 +1186,7 @@ $header-tilt: 8deg; |
|
|
|
|
|
|
|
&.no-image { |
|
|
|
min-height: 0; |
|
|
|
font-size: 2em; |
|
|
|
font-size: 1em; |
|
|
|
} |
|
|
|
|
|
|
|
svg { |
|
|
@ -987,7 +1200,7 @@ $header-tilt: 8deg; |
|
|
|
.title { |
|
|
|
text-align: left; |
|
|
|
width: 110%; |
|
|
|
background-color: rgba(#FFF, 0.5); |
|
|
|
background-color: rgba($white, 0.5); |
|
|
|
@include _(transform, rotate(-$header-tilt) translate3d(0, 0, 0)); |
|
|
|
@include _(transform-origin, 0 100%); |
|
|
|
} |
|
|
@ -1079,7 +1292,7 @@ $header-tilt: 8deg; |
|
|
|
|
|
|
|
#header-title { |
|
|
|
&.no-image { |
|
|
|
min-height: rems(10); |
|
|
|
min-height: 0; |
|
|
|
} |
|
|
|
&.short { |
|
|
|
min-height: rems(25); |
|
|
@ -1087,8 +1300,7 @@ $header-tilt: 8deg; |
|
|
|
&.no-image, |
|
|
|
&.short { |
|
|
|
h1 { |
|
|
|
position: absolute; |
|
|
|
bottom: 0; |
|
|
|
text-align: left; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -1176,7 +1388,7 @@ $header-tilt: 8deg; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@include header-colour(about, $colour-4); |
|
|
|
@include header-colour(about, $colour-1); |
|
|
|
@include header-colour(policy, $colour-3); |
|
|
|
|
|
|
|
#bike_small + label { |
|
|
@ -1277,7 +1489,7 @@ $header-tilt: 8deg; |
|
|
|
} |
|
|
|
|
|
|
|
h4, h5 { |
|
|
|
color: #FFF; |
|
|
|
color: $white; |
|
|
|
background-color: $colour-1; |
|
|
|
@include _(text-stroke, 1px rgba(0, 0, 0, 0.25)); |
|
|
|
} |
|
|
@ -1326,9 +1538,8 @@ $header-tilt: 8deg; |
|
|
|
} |
|
|
|
|
|
|
|
.info { |
|
|
|
//display: none; |
|
|
|
position: fixed; |
|
|
|
background-color: #FFF; |
|
|
|
background-color: $white; |
|
|
|
color: #333; |
|
|
|
left: auto; |
|
|
|
right: auto; |
|
|
@ -1350,4 +1561,291 @@ $header-tilt: 8deg; |
|
|
|
[value="cancel"] { |
|
|
|
background-color: $colour-4; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.conferences-register .policy-agreement { |
|
|
|
padding: 0.25em 1em; |
|
|
|
background-color: #F8F8F8; |
|
|
|
@include default-box-shadow(top, 2, true); |
|
|
|
} |
|
|
|
|
|
|
|
.lingua-franca-translations { |
|
|
|
position: relative; |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
} |
|
|
|
|
|
|
|
.lingua-franca-translations .translation-examples { |
|
|
|
//width: 100%; |
|
|
|
padding: 0 7.5%; |
|
|
|
z-index: 1; |
|
|
|
background-color: $white; |
|
|
|
padding-bottom: 0.5vh; |
|
|
|
} |
|
|
|
|
|
|
|
html #lingua-franca-translation-form { |
|
|
|
@include _(box-shadow, none); |
|
|
|
} |
|
|
|
|
|
|
|
.lingua-franca-translations .translation-examples ul { |
|
|
|
list-style: none; |
|
|
|
padding: 0; |
|
|
|
white-space: nowrap; |
|
|
|
overflow-x: auto; |
|
|
|
overflow-y: hidden; |
|
|
|
width: 100%; |
|
|
|
height: 6vh; |
|
|
|
padding-top: 0.25em; |
|
|
|
z-index: 1; |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.lingua-franca-translations .translation-examples li { |
|
|
|
display: inline-block; |
|
|
|
position: relative; |
|
|
|
width: 5vw; |
|
|
|
height: 5vh; |
|
|
|
margin: 0 0.5em; |
|
|
|
|
|
|
|
@include after { |
|
|
|
content: ''; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
cursor: pointer; |
|
|
|
outline: 0.25em solid rgba($colour-2, 0.25); |
|
|
|
background-color: rgba($colour-2, 0.25); |
|
|
|
outline-color: rgba($colour-2, 0.25); |
|
|
|
@include _(transition, '#{background-color, outline-color 250ms, 250ms ease-in-out, ease-in-out}'); |
|
|
|
} |
|
|
|
|
|
|
|
iframe { |
|
|
|
@include _(transform, scale(0.05) translate(-950vw, -950vh)); |
|
|
|
width: 100vw; |
|
|
|
height: 100vh; |
|
|
|
@include _(transform-origin, 50% 50%); |
|
|
|
//@include _(transition, '#{transform, position, z-index 250ms, 250ms, 0 ease-in-out, ease-in-out, linear 0, 250ms, 0}'); |
|
|
|
position: fixed; |
|
|
|
margin: auto |
|
|
|
} |
|
|
|
|
|
|
|
&:hover { |
|
|
|
@include after { |
|
|
|
background-color: rgba($colour-3, 0); |
|
|
|
outline-color: rgba($colour-3, 0.5); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&.open { |
|
|
|
iframe { |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
z-index: 100; |
|
|
|
//margin: auto; |
|
|
|
@include _(transform, scale(0.75) translate(0, 0)); |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
|
|
|
|
@include breakpoint(large) { |
|
|
|
left: 8.75rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
left: 0; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
background-color: rgba($colour-3, 0.5); |
|
|
|
position: fixed; |
|
|
|
z-index: 99; |
|
|
|
} |
|
|
|
|
|
|
|
/*@include before { |
|
|
|
content: ''; |
|
|
|
position: fixed; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
z-index: 101; |
|
|
|
cursor: pointer; |
|
|
|
}*/ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.highlight-key { |
|
|
|
outline: 3rem solid rgba($colour-2, 0.5); |
|
|
|
} |
|
|
|
|
|
|
|
#lingua-franca-translation-form button[type="submit"] { |
|
|
|
margin-right: 0.25em; |
|
|
|
} |
|
|
|
|
|
|
|
.translation-history .translation-diff-info, |
|
|
|
.translation-history .diff ul { |
|
|
|
list-style: none; |
|
|
|
padding: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.translation-history .translation-diff-info li { |
|
|
|
margin-bottom: 0.5em; |
|
|
|
font-style: italic; |
|
|
|
} |
|
|
|
|
|
|
|
.translation-history .translation-diff-info li, |
|
|
|
.translation-history .diff li { |
|
|
|
width: 50%; |
|
|
|
display: inline-block; |
|
|
|
float: left; |
|
|
|
} |
|
|
|
|
|
|
|
#lingua-franca-keys td a .undefined { |
|
|
|
font-style: italic; |
|
|
|
color: #888; |
|
|
|
} |
|
|
|
|
|
|
|
.stats { |
|
|
|
list-style: none; |
|
|
|
|
|
|
|
h3 { |
|
|
|
display: inline-block; |
|
|
|
} |
|
|
|
|
|
|
|
.stat { |
|
|
|
position: relative; |
|
|
|
padding: 0 0.25em; |
|
|
|
margin: 0.5em; |
|
|
|
font-size: 2em; |
|
|
|
display: inline-block; |
|
|
|
color: $white; |
|
|
|
background-color: $colour-1; |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
@include _(text-stroke, 1px rgba(0, 0, 0, 0.25)); |
|
|
|
|
|
|
|
&.important { |
|
|
|
width: 2em; |
|
|
|
height: 2em; |
|
|
|
line-height: 2em; |
|
|
|
text-align: center; |
|
|
|
border-radius: 50%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.money .stat { |
|
|
|
background-color: $colour-5; |
|
|
|
} |
|
|
|
|
|
|
|
.percent { |
|
|
|
font-size: 1.5em; |
|
|
|
} |
|
|
|
|
|
|
|
.value { |
|
|
|
position: relative; |
|
|
|
z-index: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.stat-with-label { |
|
|
|
display: inline-block; |
|
|
|
text-align: center; |
|
|
|
vertical-align: middle; |
|
|
|
background-color: $colour-3; |
|
|
|
margin: 0.5em; |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
|
|
|
|
.stat { |
|
|
|
margin-top: 0.25em; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.label { |
|
|
|
padding: 0.5em 0.5em 0; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
|
|
|
|
.breakdown { |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.email-preview { |
|
|
|
max-width: 40rem; |
|
|
|
margin-top: 2em; |
|
|
|
padding: 0.25em 1em; |
|
|
|
background-color: #F8F8F8; |
|
|
|
@include default-box-shadow(top, 2, true); |
|
|
|
} |
|
|
|
|
|
|
|
.facilitators { |
|
|
|
display: inline-block; |
|
|
|
|
|
|
|
.name, .role { |
|
|
|
display: inline; |
|
|
|
} |
|
|
|
|
|
|
|
.role { |
|
|
|
color: #666; |
|
|
|
|
|
|
|
@include before { |
|
|
|
content: '('; |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
content: '), '; |
|
|
|
} |
|
|
|
|
|
|
|
&:last-child { |
|
|
|
@include after { |
|
|
|
content: ')'; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.workshop-previews { |
|
|
|
position: relative; |
|
|
|
list-style: none; |
|
|
|
padding: 0; |
|
|
|
|
|
|
|
p { |
|
|
|
padding: 0 1rem 0.5rem; |
|
|
|
font-size: 1em; |
|
|
|
color: #333; |
|
|
|
} |
|
|
|
|
|
|
|
h4 { |
|
|
|
color: $white; |
|
|
|
background-color: $colour-1; |
|
|
|
padding: 0.5em 1em; |
|
|
|
margin: 0; |
|
|
|
@include _(text-stroke, 1px rgba(0, 0, 0, 0.25)); |
|
|
|
} |
|
|
|
|
|
|
|
a { |
|
|
|
display: block; |
|
|
|
max-height: 10em; |
|
|
|
overflow: hidden; |
|
|
|
@include default-box-shadow(top, 2); |
|
|
|
@include _(transition, transform 150ms ease-in-out); |
|
|
|
|
|
|
|
&:hover, &:focus, &:active { |
|
|
|
@include _(transform, scale(1.1)); |
|
|
|
} |
|
|
|
|
|
|
|
@include before { |
|
|
|
content: ''; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
left: 0; |
|
|
|
z-index: 1; |
|
|
|
cursor: pointer; |
|
|
|
@include _(box-shadow, inset 0em -2em 2em -1em $white); |
|
|
|
} |
|
|
|
|
|
|
|
@include after { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
} |
|
|
|
} |