1
0
Fork 0
blog/src/components/atoms/Exif.module.scss

59 lines
922 B
SCSS
Raw Normal View History

2018-09-07 13:08:01 +02:00
@import 'variables';
2018-09-12 21:03:35 +02:00
@import 'mixins';
2018-09-07 13:08:01 +02:00
.exif {
2019-10-02 13:35:50 +02:00
margin-top: -($spacer * 1.5);
margin-bottom: $spacer * 2;
2018-09-14 00:35:40 +02:00
}
.data {
2019-10-02 13:35:50 +02:00
@include breakoutviewport;
font-size: $font-size-mini;
color: $brand-grey-light;
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
margin-bottom: -3px;
span {
display: block;
flex: 1 1 20%;
white-space: nowrap;
padding: $spacer / 1.5;
border-bottom: 1px solid $brand-grey-dimmed;
&:first-child {
flex-basis: 100%;
2018-09-12 21:03:35 +02:00
}
2019-10-02 13:35:50 +02:00
}
2018-09-12 21:03:35 +02:00
2019-10-02 13:35:50 +02:00
@media (min-width: $screen-sm) {
margin-bottom: 0;
2018-09-16 14:53:26 +02:00
2019-10-02 13:35:50 +02:00
span {
border-left: 1px solid $brand-grey-dimmed;
border-bottom: 0;
padding: $spacer;
&,
&:first-child {
flex: 1 1 auto;
}
&:first-child {
border-left: 0;
}
2018-09-07 13:08:01 +02:00
}
2019-10-02 13:35:50 +02:00
}
2018-09-07 13:08:01 +02:00
}
2018-09-14 00:35:40 +02:00
.map {
2019-10-02 13:35:50 +02:00
@include breakoutviewport;
@include media-frame;
2018-09-14 00:35:40 +02:00
2019-10-02 13:35:50 +02:00
overflow: hidden;
height: 160px;
2018-09-14 00:35:40 +02:00
}