first adaption to suit my needs

This commit is contained in:
Patrick Tschuchnig
2020-01-25 01:48:39 +01:00
parent a22cff5163
commit bf3b8fc115
23 changed files with 265 additions and 238 deletions

View File

@@ -1,8 +1,18 @@
@keyframes blink
{
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
* {
outline: none;
color: #ff9400;
}
body {
color: rgb(167, 158, 139) !important;
font-size: 12px;
background: #241c11 !important;
}
img {
@@ -14,11 +24,10 @@ img {
header {
margin: 2rem 20% -2rem 20%;
display: flex;
justify-content: center;
}
header * {
color: #f78e66 !important;
color: #ff7e00 !important;
font-size: 2rem !important;
}
@@ -27,19 +36,23 @@ header * {
nav {
margin-left: 20%;
margin-right: 20%;
padding-top: 3rem;
padding-top: 0.5rem;
line-height: 2rem;
}
nav a {
color: #72b6b5 !important;
padding-right: 2rem;
color: #705000 !important;
padding-right: 12px;
font-size: 1rem;
font-weight: bold;
}
nav a:hover {
text-decoration: underline !important;
color: #FFBE00 !important;
}
a.a-active {
color: #FFBE00 !important;
}
/* main */
@@ -49,10 +62,17 @@ main {
margin-left: 20%;
margin-right: 20%;
display: grid;
grid-gap: 1.4rem;
grid-gap: 0.4rem;
line-height: 1.5rem;
}
.title {
color: #ff7e00;
font-size: 18px;
font-weight: bold;
display: grid;
}
.content a {
text-decoration: underline;
}
@@ -60,38 +80,39 @@ main {
.post-list a {
text-decoration: none;
position: relative;
color: #f78e66 !important;
/* color: #72b6b5 !important; */
color: #FFBE00 !important;
padding-bottom: 10px;
}
.post-list a:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0%;
border-bottom: 2px solid #f78e66;
left: auto;
transition: 0.4s;
}
.post-list a:hover:after {
width: 100%;
content: "_";
animation: blink 1s infinite;
}
/*
.post-list a:before,
.post-list a:before {
content: "#";
color: #42b983;
color: #ff9400;
position: absolute;
left: -0.8em;
font-weight: bold;
}
*/
/* footer */
footer {
font-weight: bold;
color: #72b6b5;
color: #ffd300;
font-size: 0.7rem;
margin: 4rem 20% 4rem 20%;
}