portfoligor/assets/scss/_main_body.scss

45 lines
579 B
SCSS
Raw Normal View History

///////////////////
// //
// MAIN //
// //
///////////////////
2021-10-29 22:34:24 +02:00
.home-lists {
2021-10-29 22:34:24 +02:00
@include breakpoint(laptop) {
display: inline-flex;
flex-flow: row;
flex-wrap: wrap;
overflow: visible;
width: 100%; // set the container width
2021-10-29 22:34:24 +02:00
dt {
flex: 0 0 39%;
word-wrap: anywhere;
}
dd {
flex: 0 0 59%;
margin-left: auto;
text-align: left;
}
}
dd {
margin-left: .5rem;
}
dt::after {
content: ':';
}
}
.contents {
padding: 0;
}
2021-10-29 22:34:24 +02:00
.home-lists {
margin: 0;
}