42 lines
522 B
SCSS
42 lines
522 B
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;
|
|
}
|
|
}
|
|
|
|
.menu-card {
|
|
margin-left: -7px;
|
|
padding-left: 7px;
|
|
margin-right: -7px;
|
|
padding-right: 7px;
|
|
margin-bottom: 7px;
|
|
}
|
|
|