Removing uv as package manager. Isues with using it on network volume.

This commit is contained in:
g_it 2026-02-02 09:37:52 +01:00
commit 71130424e3
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
347 changed files with 1271 additions and 1851 deletions

47
content/assets/css/_faces.css Executable file
View file

@ -0,0 +1,47 @@
/*****************************
* FACES
*****************************/
.faces {
display: flex;
justify-content: space-between;
width: 80vw;
height: 30vh;
}
.face {
width: 100%;
height: 33.33vh;
position: relative;
overflow: hidden;
transition: all 0.5s ease;
}
.face:hover {
filter: invert(50%);
}
.face img {
width: 100%;
height: 100%;
object-fit: contain;
opacity: 0;
transform: scale(0.9);
transition: all 2s ease-out forwards;
}
.face.active img {
animation: fadeIn 2s ease-out forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: scale(0.9);
}
100% {
opacity: 1;
transform: scale(1);
}
}