149 lines
1.8 KiB
SCSS
149 lines
1.8 KiB
SCSS
@import "./variables.scss";
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 1.78;
|
|
font-family: $font;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: $greenBg;
|
|
color: $darkGray;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: 500;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
input,
|
|
select,
|
|
button,
|
|
textarea {
|
|
appearance: none;
|
|
border: none;
|
|
background: transparent;
|
|
outline: none;
|
|
font-family: $font;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type="email"],
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="search"] {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
a,
|
|
button,
|
|
label,
|
|
input[type="submit"],
|
|
input[type="checkbox"],
|
|
input[type="radio"] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
img,
|
|
svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.red-text {
|
|
color: $red;
|
|
}
|
|
|
|
.green-text {
|
|
color: $green;
|
|
}
|
|
|
|
.dark-gray-text {
|
|
color: $darkGray;
|
|
}
|
|
|
|
.link {
|
|
color: $green;
|
|
transition: 0.2s color;
|
|
|
|
&:hover {
|
|
color: $black;
|
|
}
|
|
}
|
|
|
|
.truncate {
|
|
width: 250px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
}
|
|
|
|
.offscreen {
|
|
position: absolute;
|
|
left: -999em;
|
|
}
|
|
|
|
.width {
|
|
width: 90%;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.divider {
|
|
width: 48px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
}
|
|
|
|
.small-divider {
|
|
width: 8px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
}
|
|
|
|
@keyframes float {
|
|
0% {
|
|
transform: translate(0, 0);
|
|
}
|
|
50% {
|
|
transform: translate(0, -20%);
|
|
}
|
|
100% {
|
|
transform: translate(0, 0);
|
|
}
|
|
}
|
|
|
|
@keyframes floatLarge {
|
|
0% {
|
|
transform: translate(0, 0);
|
|
}
|
|
50% {
|
|
transform: translate(0, -40%);
|
|
}
|
|
100% {
|
|
transform: translate(0, 0);
|
|
}
|
|
}
|