59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
.wrapper {
|
|
margin: auto;
|
|
width: 100%;
|
|
text-align: center;
|
|
min-height: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color: $gray-medium;
|
|
font-weight: 300;
|
|
transition: all 0.2s;
|
|
padding-top: 40px;
|
|
|
|
&.small {
|
|
& .title {
|
|
font-size: 20px !important;
|
|
}
|
|
|
|
& .subtext {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 32px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.subtext {
|
|
font-size: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
.no-results {
|
|
display: block;
|
|
margin: auto;
|
|
background-image: svg-load(no-results.svg, fill=#CCC);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
background-position: center center;
|
|
width: 166px;
|
|
height: 166px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.empty-state {
|
|
display: block;
|
|
margin: auto;
|
|
background-image: svg-load(empty-state.svg, fill=#CCC);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
background-position: center center;
|
|
width: 166px;
|
|
height: 166px;
|
|
margin-bottom: 20px;
|
|
}
|