Many improvements.

This commit is contained in:
Daniel
2023-03-06 00:33:20 +03:30
parent f3e104aafe
commit cff10fa9b6
19 changed files with 314 additions and 79 deletions
+37
View File
@@ -10,3 +10,40 @@
-ms-overflow-style: none;
scrollbar-width: none;
}
::selection {
background-color: #0ea5e9;
color: white;
}
.hyphens {
hyphens: auto;
}
.slide-up {
animation: slide-up-animation 70ms;
}
.fade-in {
animation: fade-in-animation 100ms;
}
@keyframes fade-in-animation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes slide-up-animation {
0% {
transform: translateY(10%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}