This commit is contained in:
Michael Rodin 2024-06-13 13:15:47 +02:00
parent b125f86fa9
commit 441e4781de
2 changed files with 39 additions and 29 deletions

View file

@ -8,6 +8,8 @@
}
body {
position: relative;
min-height: 100em;
padding: 0;
margin: 0;
font-family: Roboto;
@ -64,7 +66,7 @@ div.item > a {
}
div.item:hover {
animation:hover 0.2s forwards;
animation: hover 0.2s forwards;
}
@keyframes hover {
@ -74,16 +76,18 @@ div.item:hover {
img.item {
height: inherit;
margin: 0 auto;
}
div.image {
border-radius: 15pt;
height: 58pt;
min-width: 58pt;
width: auto;
display: inline-block;
padding: 5pt auto;
display: block;
width: fit-content;
padding: 5pt;
margin: 12pt 10pt 12pt 12pt;
text-align: center;
background: white;
}
@ -91,14 +95,23 @@ div.desc {
margin: auto 6pt auto 0;
text-align: center;
font-weight: 800;
font-size:14pt;
font-size: 14pt;
}
footer {
position: relative;
display: flex;
left: 0;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10em;
border-top: grey 1px solid;
display: flex;
justify-content: center;
align-items: center;
}
@media screen and (max-width: 600px) {
div.item {
width: 70%;
}
}