You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.0 KiB
SCSS

// Global Variables
$primary: #9c27b0;
$secondary: #212121;
$small: 600px;
$medium: 960px;
.body-container {
width: 100%;
height: 100%;
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 60%;
background-color: $secondary;
}
.main button {
margin-top: 3%;
padding-left: 3%;
padding-right: 3%;
font-size: 1.5vh;
}
.main span.title {
font-size: 6vh;
padding-bottom: 2%;
@media screen and (max-width: $medium) {
font-size: 4vh;
}
}
.main span.description {
font-size: 3vh;
@media screen and (max-width: $medium) {
font-size: 2vh;
}
@media screen and (max-width: $small) {
font-size: 1.5vh;
}
}
.details {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: #303030;
@media screen and (max-width: $medium) {
padding-top: 15%;
padding-bottom: 15%;
flex-direction: column;
}
}
mat-card {
margin: 5%;
}