bunteshaus.de/themes/buha/assets/css/classes.css

65 lines
749 B
CSS
Raw Normal View History

2022-04-11 15:45:49 +02:00
.minmax {
width: auto;
max-width: auto;
}
.dfjcc {
display: flex;
justify-content: center;
}
.stretch {
display: flex;
flex-direction: column;
align-items: stretch;
}
.grow {
flex-grow: 1;
}
.column {
display: flex;
flex-direction: column;
}
.style_less {
list-style: none;
}
.font_size_smaller {
font-size: smaller;
}
2022-04-11 21:35:30 +02:00
.margin_right_1rem {
margin-right: 1rem;
}
2022-04-11 15:45:49 +02:00
.margin_top_1rem {
margin-top: 1.1rem;
}
.underline {
text-decoration: underline;
}
.align_menu {
list-style: none;
text-align: right;
2022-04-11 21:04:28 +02:00
margin-bottom: .3rem;
2022-04-11 15:45:49 +02:00
}
.notgrow {
display: flex; flex-grow: 0;
}
.min_height {
min-height: 50vh;
min-width: auto;
}
.no_underline {
text-decoration: none;
}
2022-05-06 16:07:39 +02:00