139 lines
2.2 KiB
CSS
139 lines
2.2 KiB
CSS
html, body {
|
|
height: 100vh;
|
|
background-color: #fff;
|
|
font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
body {
|
|
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
|
|
}
|
|
#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)
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
padding: 0.5rem 3rem;
|
|
min-height: 4rem;
|
|
flex-flow: row-reverse;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: currentColor;
|
|
}
|
|
footer a {
|
|
color: currentColor;
|
|
}
|
|
footer p {
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.bi {
|
|
vertical-align: -.125em;
|
|
fill_: currentColor;
|
|
}
|
|
|
|
/*
|
|
* Sidebar
|
|
*/
|
|
.position-sticky {
|
|
top: .5rem;
|
|
margin-bottom: .5rem!important;
|
|
}
|
|
|
|
|
|
/*
|
|
* Blog posts
|
|
*/
|
|
.blog-post {
|
|
margin-bottom: 4rem;
|
|
}
|
|
.blog-post-title {
|
|
font-size: 2.5rem;
|
|
}
|
|
.blog-post-meta {
|
|
margin-bottom: 1.25rem;
|
|
color: #727272;
|
|
}
|
|
|
|
/*
|
|
* Blog - sidebar
|
|
*/
|
|
.blog-sidebar {
|
|
fill_: currentColor;
|
|
}
|
|
.blog-sidebar h4 a {
|
|
color: #000;
|
|
}
|
|
.blog-sidebar a {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
/*
|
|
* Blog - Kategorien
|
|
*/
|
|
.categories a {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
/*
|
|
* Blog - Tags
|
|
*/
|
|
.tag-cloud {
|
|
display_: inline-block;
|
|
padding_: 0;
|
|
margin_: 0;
|
|
}
|
|
.tag-cloud-link a {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
/*
|
|
* social-links
|
|
*/
|
|
.social {
|
|
text-align: center;
|
|
}
|
|
.social-links {
|
|
display: inline-block;
|
|
text-align: left;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
.social-links li {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
padding-bottom: 5px;
|
|
}
|
|
.social-links li a {
|
|
font-size: 1rem;
|
|
color: #000;
|
|
text-decoration: none !important;
|
|
}
|
|
.social-links li a:hover {
|
|
color: #000;
|
|
}
|
|
.avatar {
|
|
padding-top: 8vh;
|
|
}
|