2018-05-11 20:01:39 +02:00
|
|
|
.hook {
|
|
|
|
.loader {
|
|
|
|
animation: spin 2s linear infinite;
|
|
|
|
border-radius: 50%;
|
2018-05-11 21:49:04 +02:00
|
|
|
border-style: solid;
|
2018-05-11 20:01:39 +02:00
|
|
|
border-top-color: $teal;
|
2018-05-11 21:49:04 +02:00
|
|
|
|
|
|
|
&:not(.small) {
|
|
|
|
width: 4rem; height: 4rem;
|
|
|
|
|
|
|
|
border-width: 6px;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.small {
|
|
|
|
width: 2rem; height: 2rem;
|
|
|
|
border-width: 3px;
|
|
|
|
}
|
2018-05-11 20:01:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-11 21:06:43 +02:00
|
|
|
|
2018-05-11 20:01:39 +02:00
|
|
|
|
|
|
|
.hook__navigation {
|
|
|
|
background-color: $black;
|
|
|
|
color: $white;
|
|
|
|
font-size: 1rem;
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hook__navigation__step {
|
2018-05-11 21:06:43 +02:00
|
|
|
@media (min-width: 501px) {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
width: 3rem; height: 3rem;
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
font-size: 1.25rem;
|
|
|
|
line-height: 3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
span {
|
|
|
|
width: 1rem; height: 1rem;
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
line-height: 0.9rem;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 20:01:39 +02:00
|
|
|
|
|
|
|
&:not(.active) {
|
|
|
|
span {
|
|
|
|
border-color: rgba($white, 0.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $teal;
|
|
|
|
|
|
|
|
span {
|
|
|
|
border-color: rgba($teal, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 0 auto 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.hook__page {
|
|
|
|
@extend .page__content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hook__page__hero {
|
2018-05-11 21:49:04 +02:00
|
|
|
margin-bottom: 2rem;
|
2018-05-11 20:01:39 +02:00
|
|
|
border-bottom: 1px solid rgba($black, 0.05);
|
|
|
|
|
|
|
|
h1, p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-11 21:49:04 +02:00
|
|
|
.hook__page__hero__claim,
|
|
|
|
.hook__page__hero__support {
|
|
|
|
margin-bottom: 3rem; padding-left: 1rem;
|
|
|
|
|
2018-05-11 20:01:39 +02:00
|
|
|
background-color: $white;
|
|
|
|
border: 1px solid rgba($gray, 0.7);
|
|
|
|
font-size: 1rem;
|
2018-05-11 21:06:43 +02:00
|
|
|
|
|
|
|
@media (min-width: 501px) {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
width: 80%;
|
|
|
|
}
|
2018-05-11 20:01:39 +02:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
@include clearfix;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, a {
|
|
|
|
line-height: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: rgba($black, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
border-left: 1px solid rgba($gray, 0.7);
|
|
|
|
color: $white;
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 0.2s;
|
|
|
|
width: 6rem;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
width: calc(100% + 2px); height: calc(100% + 2px);
|
|
|
|
top: -1px; left: -1px;
|
|
|
|
|
|
|
|
border: 1px solid;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
transition: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:hover) {
|
|
|
|
background-color: $black;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border-color: $black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $teal;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border-color: $teal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-12 00:22:08 +02:00
|
|
|
.hook__page__hero__claim input {
|
|
|
|
width: calc(100% - 10rem);
|
2018-05-11 21:49:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hook__page__hero__support {
|
|
|
|
input[type=number] {
|
|
|
|
width: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text] {
|
|
|
|
width: calc(100% - 11.5rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
line-height: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-11 20:01:39 +02:00
|
|
|
|
|
|
|
|
2018-05-12 00:22:08 +02:00
|
|
|
.hook__page__content::after {
|
|
|
|
@include clearfix;
|
2018-05-11 20:01:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hook__page__content__card {
|
|
|
|
margin-bottom: 1rem; padding: 1rem;
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2018-05-11 21:06:43 +02:00
|
|
|
@media (min-width: 501px) {
|
|
|
|
float: left;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-05-11 20:01:39 +02:00
|
|
|
}
|
2018-05-12 00:22:08 +02:00
|
|
|
|
|
|
|
.hook__page__content__meme {
|
|
|
|
padding-right: 1rem;
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
|
|
|
@media (min-width: 701px) {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
width: 100%; height: 100%;
|
|
|
|
background-color: rgba($teal, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
color: rgba($black, 0.3);
|
|
|
|
display: block;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
font-weight: 600;
|
|
|
|
letter-spacing: 0.05rem;
|
|
|
|
margin-bottom: 0.025rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
@media (min-width: 901px) {
|
|
|
|
&:not([type="checkbox"]):not([type="submit"]) {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
&:not([type="checkbox"]):not([type="submit"]) {
|
|
|
|
font-size: 1.05rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not([type="checkbox"]):not([type="file"]):not([type="submit"]) {
|
|
|
|
border-bottom: 2px solid;
|
|
|
|
padding-bottom: 0.15rem;
|
|
|
|
transition: all 0.2s;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not([type="file"]):not([type="submit"]) {
|
|
|
|
&:not(:hover):not(:active) {
|
|
|
|
border-color: $black;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
border-color: $teal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&[type="checkbox"] {
|
|
|
|
width: 1.25rem; height: 1.25rem;
|
|
|
|
|
|
|
|
border: 2px solid;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
position: relative;
|
|
|
|
top: 0.35rem;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
width: 100%; height: 100%;
|
|
|
|
|
|
|
|
content: "✓";
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 1rem;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:checked)::after {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked::after {
|
|
|
|
color: $teal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hook__page__content__meme__uploader {
|
|
|
|
@extend .__button-black;
|
|
|
|
text-align: center;
|
|
|
|
width: 11rem;
|
|
|
|
|
|
|
|
> div:first-of-type {
|
|
|
|
width: 100%; height: 100%;
|
|
|
|
top: 0; left: 0;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
top: 0; left: 0;
|
|
|
|
bottom: 0; right: 0;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
}
|