fox-send/app/templates/signupPromo/signupPromo.css

29 lines
489 B
CSS
Raw Normal View History

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-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
}