2016-11-03 19:40:54 +00:00
|
|
|
html {
|
|
|
|
position: relative;
|
2016-12-01 18:57:19 +00:00
|
|
|
min-width: $min-width;
|
2016-12-06 16:55:48 +00:00
|
|
|
height: 100%;
|
2016-11-18 15:41:52 +00:00
|
|
|
// Because iOS hates us we must fight to the death!
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
|
|
// End Apple War
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: $text-ultradark;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-family: 'Oxygen', sans-serif;
|
|
|
|
font-size: $base;
|
|
|
|
line-height: 1.6;
|
2016-12-15 14:44:45 +00:00
|
|
|
min-width: $medium-width;
|
2016-12-06 16:55:48 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper,
|
|
|
|
.wrapper > div {
|
|
|
|
min-height: 100vh;
|
2016-11-03 19:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2017-01-10 16:27:10 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: $light;
|
|
|
|
letter-spacing: -0.5px;
|
|
|
|
color: $text-dark;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-01-06 15:36:51 +00:00
|
|
|
a {
|
|
|
|
color: $link;
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:40:54 +00:00
|
|
|
.wrapper {
|
|
|
|
background: $bg-medium;
|
2016-12-06 16:55:48 +00:00
|
|
|
margin: 0;
|
2016-11-03 19:40:54 +00:00
|
|
|
|
|
|
|
&--background {
|
|
|
|
background: url('/assets/images/background.png') center center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 16:55:48 +00:00
|
|
|
.body-wrap {
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: $white;
|
|
|
|
box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
border: solid 1px $silver;
|
2016-12-21 18:39:40 +00:00
|
|
|
min-width: 610px;
|
2017-01-09 23:13:52 +00:00
|
|
|
max-width: calc(100vw - #{$nav-width} - #{$pad-base});
|
2016-12-15 14:44:45 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: $pad-base;
|
|
|
|
margin-right: $pad-base;
|
2016-12-21 17:25:54 +00:00
|
|
|
|
|
|
|
@at-root .has-sidebar & {
|
|
|
|
margin-right: 0;
|
2017-01-09 23:13:52 +00:00
|
|
|
max-width: calc(100vw - #{$nav-width} - #{$pad-base} - #{$pad-base} - #{$sidepanel-width});
|
2016-12-21 17:25:54 +00:00
|
|
|
}
|
2016-12-15 14:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-sidebar {
|
|
|
|
@include display(flex);
|
|
|
|
height: 100%;
|
|
|
|
|
2016-12-21 17:25:54 +00:00
|
|
|
> * {
|
|
|
|
&:first-child {
|
|
|
|
@include flex-grow(1);
|
|
|
|
@include align-self(flex-start);
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2016-12-15 14:44:45 +00:00
|
|
|
}
|
2016-12-06 16:55:48 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 19:40:54 +00:00
|
|
|
.cf {
|
|
|
|
@include clearfix;
|
|
|
|
}
|
2016-11-29 22:29:14 +00:00
|
|
|
|
|
|
|
input,
|
2016-12-01 18:57:19 +00:00
|
|
|
textarea,
|
|
|
|
button {
|
2016-11-29 22:29:14 +00:00
|
|
|
font-family: 'Oxygen', sans-serif;
|
2016-12-09 16:14:16 +00:00
|
|
|
|
|
|
|
&:-webkit-autofill {
|
2016-12-16 15:54:49 +00:00
|
|
|
-webkit-box-shadow: 0 0 0 1000px #fff inset;
|
2016-12-21 17:25:54 +00:00
|
|
|
-webkit-text-fill-color: $text-dark !important; //sass-lint:disable-line no-important
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
&[type=number] {
|
|
|
|
&::-webkit-inner-spin-button,
|
|
|
|
&::-webkit-outer-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-12-09 16:14:16 +00:00
|
|
|
}
|
2016-11-29 22:29:14 +00:00
|
|
|
}
|