travopti/frontend/src/app/containers/region-details/region-details.component.scss
Patrick Gebhardt 112c37f7b5 Add team site
2020-06-20 00:16:42 +02:00

70 lines
978 B
SCSS

:host {
display: flex;
flex-direction: column;
height: 100%;
}
.region-img {
width: 100%;
object-fit: cover;
height: 10rem;
margin-bottom: 1.5rem;
align-self: center;
}
.region-details-header {
display: flex;
flex-direction: row;
align-items: center;
> .region-title {
flex: 1 1 auto;
display: flex;
flex-direction: column;
margin: 0.25rem 0;
> .region-name {
font-weight: bold;
font-size: 2rem;
}
> .region-country {
text-transform: uppercase;
font-size: 1.2rem;
}
}
}
.region-decsription {
text-align: justify;
margin: 0.5rem 0;
> .more-btn {
color: #8f8f8f;
}
}
.region-stats-group {
display: flex;
flex-direction: column;
margin: 1rem 0;
> .group-title {
font-size: 1.2rem;
}
> .graph {
height: 30vh;
display: block;
}
}
.spinner {
flex: 1 1 auto;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}