Update & cleanup for v1.32.3504.68

This commit is contained in:
simonmicro
2023-05-21 16:08:37 +02:00
parent c3ae6eb37b
commit 86e1fa2ce1
7 changed files with 3927 additions and 192 deletions

50
www/custom.css Normal file
View File

@@ -0,0 +1,50 @@
* {
color: rgb(57, 83, 120);
}
.dark * {
color: rgb(200, 242, 242);
}
.navbar .navbar-brand {
animation-name: pritunl-logo;
animation-duration: 20s;
animation-iteration-count: infinite;
}
@keyframes pritunl-logo {
0% {
transform: rotate3d(1, 0, 0, 360deg);
}
25% {
transform: rotate3d(1, 0, 0, 0deg);
}
50% {
transform: rotate3d(0, 1, 0, 0deg);
}
75% {
transform: rotate3d(0, 1, 0, 360deg);
}
100% {
transform: rotate3d(0, 1, 0, 360deg);
}
}
body::before {
position: fixed;
bottom: 0;
right: 0;
content: '';
background: url("BACKGROUND_IMAGE_URI");
background-size: contain;
background-repeat: no-repeat;
width: 10em;
height: 10em;
margin: 1em;
opacity: 0.1;
z-index: -99;
}