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 {
|
2020-11-24 16:59:03 +00:00
|
|
|
color: $core-black;
|
2016-11-03 19:40:54 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-family: 'Nunito Sans', sans-serif;
|
|
|
|
font-size: $medium;
|
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 {
|
2020-11-24 16:59:03 +00:00
|
|
|
font-size: $large;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-weight: $regular;
|
2017-01-10 16:27:10 +00:00
|
|
|
letter-spacing: -0.5px;
|
2020-11-24 16:59:03 +00:00
|
|
|
color: $core-black;
|
2017-01-10 16:27:10 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-01-06 15:36:51 +00:00
|
|
|
a {
|
2020-11-24 16:59:03 +00:00
|
|
|
color: $core-purple;
|
2017-01-06 15:36:51 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 19:40:54 +00:00
|
|
|
.wrapper {
|
2020-12-02 14:59:44 +00:00
|
|
|
background: $core-gradient;
|
2016-12-06 16:55:48 +00:00
|
|
|
margin: 0;
|
2016-11-03 19:40:54 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-12-06 16:55:48 +00:00
|
|
|
.body-wrap {
|
2020-12-07 23:08:59 +00:00
|
|
|
padding: 50px 30px 0;
|
2016-12-06 16:55:48 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: $white;
|
2018-09-18 21:14:13 +00:00
|
|
|
border: solid 1px $white;
|
2017-01-18 14:30:36 +00:00
|
|
|
min-width: 910px;
|
2016-12-21 17:25:54 +00:00
|
|
|
|
2017-02-24 23:01:43 +00:00
|
|
|
@at-root {
|
|
|
|
.has-sidebar & {
|
|
|
|
margin-right: 0;
|
|
|
|
min-width: 610px;
|
2017-01-10 19:10:15 +00:00
|
|
|
}
|
2016-12-21 17:25:54 +00:00
|
|
|
}
|
2016-12-15 14:44:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-sidebar {
|
2019-01-03 20:46:55 +00:00
|
|
|
display: flex;
|
2016-12-15 14:44:45 +00:00
|
|
|
height: 100%;
|
|
|
|
|
2016-12-21 17:25:54 +00:00
|
|
|
> * {
|
|
|
|
&:first-child {
|
2019-01-03 20:46:55 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
align-self: flex-start;
|
2016-12-21 17:25:54 +00:00
|
|
|
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 {
|
2020-11-20 00:51:22 +00:00
|
|
|
font-family: 'Nunito Sans', 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;
|
2020-11-24 16:59:03 +00:00
|
|
|
-webkit-text-fill-color: $core-dark-blue-grey !important; //sass-lint:disable-line no-important
|
2016-12-21 17:25:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|