durfdoen-2.0/content/stylesheets/main.scss

61 lines
1,000 B
SCSS
Raw Normal View History

2020-02-27 22:10:59 +01:00
img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
body {
box-sizing: border-box;
max-width: 1200px;
margin: 0 auto;
2020-02-27 22:35:54 +01:00
padding: 0.5em;
}
h1 {
border-left: 2px solid;
border-bottom: 2px solid;
display: inline-block;
padding: 2px 16px 2px 4px;
2020-02-27 22:10:59 +01:00
}
.content-wrapper {
margin: auto auto;
}
.details-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.details-logo {
order: 0;
flex-basis: 10%;
}
.details-text {
order: 1;
flex-basis: 70%;
}
2020-02-27 22:35:54 +01:00
.details-photo {
2020-02-27 22:10:59 +01:00
order: 2;
flex-basis: 15%;
.showcase-container {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
2020-02-27 22:35:54 +01:00
.showcase-image {
2020-02-27 22:10:59 +01:00
align-self: center;
margin: 0.5em;
max-width: 150px;
}
}
}
.details-contact {
order: 3;
flex-basis: 100%;
2020-02-27 22:35:54 +01:00
border-top: 2px solid black;
2020-02-27 22:10:59 +01:00
}
.details-verenigingen{
order: 4;
flex-basis: 100%;
}
2020-02-27 22:35:54 +01:00
}