blogamore/assets/_own/css/style.css

147 lines
2.4 KiB
CSS
Raw Normal View History

2022-11-13 20:52:45 +01:00
html, body {
2022-11-20 15:04:48 +01:00
height: 100vh;
2022-11-13 20:52:45 +01:00
background-color: #fff;
font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
2022-11-20 15:04:48 +01:00
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;
2022-11-13 20:52:45 +01:00
}
blockquote {
font: 14px/22px normal helvetica, sans-serif;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 50px;
padding-left: 15px;
border-left: 3px solid #ccc;
}
2022-11-13 20:52:45 +01:00
#content {
2022-11-20 15:04:48 +01:00
_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
2022-11-13 20:52:45 +01:00
}
2022-11-20 15:04:48 +01:00
#contents:hover {
2022-11-13 20:52:45 +01:00
/* TODO den Shadow noch ausen-Rum legen (content+sidebar) und dann am besten nach obenund unten in den Header/Footer überschneiden lassen */
2022-11-20 15:04:48 +01:00
_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)
2022-11-13 20:52:45 +01:00
}
2022-11-20 15:04:48 +01:00
footer {
2022-11-13 20:52:45 +01:00
display: flex;
padding: 0.5rem 3rem;
flex-flow: row-reverse;
justify-content: space-between;
align-items: center;
color: currentColor;
}
2022-11-20 15:04:48 +01:00
footer a {
2022-11-13 20:52:45 +01:00
color: currentColor;
}
2022-11-20 15:04:48 +01:00
footer p {
2022-11-13 20:52:45 +01:00
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.bi {
vertical-align: -.125em;
fill_: currentColor;
}
2022-11-28 19:45:15 +01:00
/*
* Sidebar
*/
.position-sticky {
top: .5rem;
margin-bottom: .5rem!important;
}
2022-11-13 20:52:45 +01:00
/*
* Blog posts
*/
.blog-post {
margin-bottom: 4rem;
}
.blog-post-title {
font-size: 2.5rem;
}
.blog-post-meta {
margin-bottom: 1.25rem;
color: #727272;
}
/*
2022-11-20 15:04:48 +01:00
* Blog - sidebar
2022-11-13 20:52:45 +01:00
*/
.blog-sidebar {
fill_: currentColor;
}
.blog-sidebar h4 a {
color: #000;
}
.blog-sidebar a {
text-decoration: none !important;
}
2022-11-20 15:04:48 +01:00
/*
* Blog - Kategorien
*/
.categories a {
text-decoration: none !important;
}
/*
* Blog - Tags
*/
2022-11-13 20:52:45 +01:00
.tag-cloud {
2022-11-20 15:04:48 +01:00
display_: inline-block;
padding_: 0;
margin_: 0;
2022-11-13 20:52:45 +01:00
}
2022-11-20 15:04:48 +01:00
.tag-cloud-link a {
text-decoration: none !important;
2022-11-13 20:52:45 +01:00
}
/*
* 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;
2022-11-28 19:45:15 +01:00
}