new frontpage

This commit is contained in:
sakrecoer 2020-12-25 20:07:09 +01:00
parent ac6d3b372c
commit db86e11963
3 changed files with 39 additions and 10 deletions

View file

@ -134,7 +134,7 @@ body {
width: 100px;
height: 100px;
line-height: 100px;
margin: 0 0 20px 0;
margin: 0 0 10px 0;
padding:0;
font-size: 65px;
}
@ -237,6 +237,8 @@ footer {
}
.icon:hover {
border: 1px solid var(--accent2);
color: var(--accent2);
}
.footframe {
display: flex;
@ -255,7 +257,7 @@ footer {
width: 100%;
}
li {
border-bottom: 1px solid var(--bg-alt);
line-height: 2;
font-size: 1.5em;
a {
@ -263,6 +265,10 @@ footer {
text-decoration: none;
color: var(--bg);
}
a:hover {
color: var(--accent2);
}
}
}
@ -379,9 +385,31 @@ footer {
.container {
display: flex;
flex-wrap: wrap;
box-shadow: 15px 15px 28px 24px var(--border-alt) inset;
border-radius: var(--border-radius);
justify-content: space-between;
div {
flex: 1 0 280px;
padding: 20px;
overflow: hidden;
text-overflow: ellipsis;
background-color: var(--bg-alt);
img {
max-width: 120px;
height: auto;
}
.date {
font-size: 0.6em;
margin-top: 40px;
}
h2 {
padding-top: 0;
margin-bottom: 0px;
}
hr {
border: 1px solid var(--fg-alt);
}
}
}
}