2018-07-31 18:09:18 +00:00
|
|
|
.signupPromo {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-09-28 14:54:23 +00:00
|
|
|
height: calc(var(--grid-basis) * 12.5);
|
|
|
|
width: calc(var(--grid-basis) * 12.5);
|
|
|
|
border: 3px solid black;
|
2018-07-31 18:09:18 +00:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
2018-09-28 14:54:23 +00:00
|
|
|
transition: background 100ms;
|
2018-10-10 01:17:40 +00:00
|
|
|
margin: 24px;
|
2018-10-16 23:53:33 +00:00
|
|
|
grid-area: content;
|
|
|
|
justify-self: right;
|
|
|
|
z-index: 1;
|
2018-07-31 18:09:18 +00:00
|
|
|
}
|
|
|
|
|
2018-09-28 14:54:23 +00:00
|
|
|
.signupPromo:hover {
|
|
|
|
background: #ff1ad9;
|
2018-07-31 18:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.signupPromo__title {
|
2018-09-28 14:54:23 +00:00
|
|
|
color: black;
|
2018-07-31 18:09:18 +00:00
|
|
|
font-size: 22px;
|
2018-09-28 14:54:23 +00:00
|
|
|
font-weight: 900;
|
2018-07-31 18:09:18 +00:00
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signupPromo__info {
|
|
|
|
padding: 6px;
|
2018-09-28 14:54:23 +00:00
|
|
|
color: black;
|
2018-07-31 18:09:18 +00:00
|
|
|
}
|
2018-10-16 23:53:33 +00:00
|
|
|
|
|
|
|
@media (max-device-width: 720px), (max-width: 720px) {
|
|
|
|
.signupPromo {
|
|
|
|
grid-area: promo;
|
|
|
|
margin: 0;
|
|
|
|
justify-self: auto;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|