You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
792 B
52 lines
792 B
$primary-color-dark: #1976D2; |
|
$primary-color: #2196F3; |
|
$primary-color-light: #BBDEFB; |
|
$primary-color-text: #FFFFFF; |
|
$accent-color: #2196F3; |
|
$primary-text-color: #212121; |
|
$secondary-text-color: #757575; |
|
$divider-color: #BDBDBD; |
|
|
|
|
|
|
|
@use "animations"; |
|
@use "base_style"; |
|
|
|
|
|
|
|
.summary-picto-div{ |
|
@include base_style.eightpadding; |
|
display:flex; |
|
flex-direction:row; |
|
} |
|
|
|
p { |
|
font-family: 'Roboto', sans-serif; |
|
font-size: 20px; |
|
} |
|
|
|
|
|
|
|
.container { |
|
background-color:$primary-color-light; |
|
display:flex; |
|
flex-direction: column; |
|
justify-content: center !important; |
|
align-items: center; |
|
padding:16px 16px 16px 16px; |
|
width:100%; |
|
hr{ |
|
width:90vw; |
|
height:5px; |
|
background-color:$divider-color; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
body{ |
|
width:100%; |
|
background-color:$primary-color-light; |
|
}
|
|
|