Files
frontpage/style/style.css
Alex Kerr 2a4097f2b1
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 15s
Move .fella-img
2026-03-20 20:58:58 +00:00

78 lines
1.0 KiB
CSS

body {
background: #B4A0EF;
margin: 0;
}
#container {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.logo {
height: 60%;
width: 60%;
object-fit: contain;
position: absolute;
}
.fella {
object-fit: contain;
transition: all .2s ease-in-out;
}
.fella:hover {
transform: rotate(5deg) scale(1.3);
}
.fella-img {
min-width: 90px;
max-width: 300px;
height: auto;
}
.top-left {
position: absolute;
top: 25vh;
left: 15vw;
}
.top-right {
position: absolute;
top: 28vh;
right: 26vw;
}
.bottom-left {
position: absolute;
bottom: 28vh;
left: 12vw;
}
.bottom-middle {
position: absolute;
object-fit: contain;
bottom: 64vh;
}
.bottom-right {
position: absolute;
bottom: 24vh;
right: 22vw;
}
a {
text-decoration: none;
}
p {
display: flex;
justify-content: center;
align-items: center;
color: #dee2e3;
font-family: 'Tienne';
font-size: 1.25em;
}