34 lines
385 B
SCSS
34 lines
385 B
SCSS
|
@import "../../_theme.scss";
|
||
|
@import "~bootstrap/scss/bootstrap.scss";
|
||
|
|
||
|
.big-icon {
|
||
|
width: 100%;
|
||
|
color: white;
|
||
|
font-size: 9rem;
|
||
|
padding: 3rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.card-title {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style:none;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-top:1rem;
|
||
|
}
|
||
|
|
||
|
.spacer {
|
||
|
display:none;
|
||
|
height:4rem;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width:44rem) {
|
||
|
.spacer {
|
||
|
display:block;
|
||
|
}
|
||
|
}
|