Kategorie + Archive und Hauptseite

This commit is contained in:
mdn 2022-11-20 15:04:48 +01:00
parent 2f15333242
commit f2b5de5575
5 changed files with 74 additions and 72 deletions

View file

@ -1,26 +1,38 @@
html, body {
height: 100%;
height: 100vh;
background-color: #fff;
font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
_padding-top: 6.5rem;
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1;
/* Vorbereitung fuer fixed-top beim Header*/
_margin-top: 6.5rem;
}
a {
/* text-dark */
color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important;
}
#content {
min-height: 100%;
height: auto;
border-radius: 5px;
box-shadow: 8px 14px 38px rgba(39,44,49,.06),1px 3px 8px rgba(39,44,49,.03);
transition: all .5s ease
_min-height: 100%;
_height: auto;
_border-radius: 5px;
_box-shadow: 8px 14px 38px rgba(39,44,49,.06),1px 3px 8px rgba(39,44,49,.03);
_transition: all .5s ease
}
#content:hover {
#contents:hover {
/* TODO den Shadow noch ausen-Rum legen (content+sidebar) und dann am besten nach obenund unten in den Header/Footer überschneiden lassen */
box-shadow: 0 0 1px rgba(39,44,49,.1),0 3px 16px rgba(39,44,49,.07);
transition: all .3s ease;
transform: translate3D(0,-1px,0)
_box-shadow: 0 0 1px rgba(39,44,49,.1),0 3px 16px rgba(39,44,49,.07);
_transition: all .3s ease;
_transform: translate3D(0,-1px,0)
}
.footer {
footer {
display: flex;
padding: 0.5rem 3rem;
min-height: 4rem;
@ -29,10 +41,10 @@ body {
align-items: center;
color: currentColor;
}
.footer a {
footer a {
color: currentColor;
}
.footer p {
footer p {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
@ -58,7 +70,7 @@ body {
}
/*
* Blog sidebar
* Blog - sidebar
*/
.blog-sidebar {
fill_: currentColor;
@ -70,13 +82,23 @@ body {
text-decoration: none !important;
}
.tag-cloud {
display: inline-block;
padding: 0;
margin: 0;
/*
* Blog - Kategorien
*/
.categories a {
text-decoration: none !important;
}
.tag-cloud-link {
margin: 2px;
/*
* Blog - Tags
*/
.tag-cloud {
display_: inline-block;
padding_: 0;
margin_: 0;
}
.tag-cloud-link a {
text-decoration: none !important;
}
/*