Programmaschema met flexbox

This commit is contained in:
2020-01-18 00:45:07 +01:00
parent bf5f1cd9b5
commit a93addfb6d
5 changed files with 208 additions and 37 deletions

View File

@@ -71,6 +71,10 @@ button[disabled]:hover
color: #1F3977;
}
.post_details.simple li.category a.over_image {
color: white;
}
.post_details date.edited {
font-weight: bold;
}
@@ -187,3 +191,41 @@ button[disabled]:hover
background-color: transparent;
}
*/
/* Responsiveness */
@media (min-width: 576px) {
.d-sm-none {
display: none !important;
}
.d-md-only, .d-lg-only, .d-xl-only {
display: none !important;
}
}
@media (min-width: 768px) {
.d-md-none {
display: none !important;
}
.d-sm-only, .d-lg-only, .d-xl-only {
display: none !important;
}
}
@media (min-width: 992px) {
.d-lg-none {
display: none !important;
}
.d-sm-only, .d-md-only, .d-xl-only {
display: none !important;
}
}
@media (min-width: 1200px) {
.d-xl-none {
display: none !important;
}
.d-sm-only, .d-md-only, .d-lg-only {
display: none !important;
}
}