47 lines
643 B
SCSS
47 lines
643 B
SCSS
|
|
@use "hugo:vars" as v;
|
||
|
|
|
||
|
|
|
||
|
|
@media(min-width: v.$bp_mobile) {
|
||
|
|
.datapage {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.datapage__content {
|
||
|
|
order: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.datapage__data {
|
||
|
|
order: 2;
|
||
|
|
min-width: 350px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.datapage__datacard {
|
||
|
|
background-color: white;
|
||
|
|
box-shadow: 0 1.5rem 4rem rgba(22,28,45,0.05) !important;
|
||
|
|
padding: 1.5rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.datapage__datacard {
|
||
|
|
address {
|
||
|
|
white-space: preserve-breaks;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
h4 {
|
||
|
|
color: v.$color_tertiary;
|
||
|
|
font-variant: small-caps;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.datapage__content {
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
}
|
||
|
|
}
|