blob: e050c824f8140142d76038c8b63179f41d83899a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* From Tailwind */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* For transitions/animations */
.fade-enter-from, .fade-leave-to {
opacity: 0;
}
.fade-enter-active, .fade-leave-active {
transition-property: opacity;
transition-duration: 300ms;
transition-timing-function: ease-out;
}
.animate-fadein {
animation-name: fadein;
animation-duration: 300ms;
animation-timing-function: ease-in;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Other */
@font-face {
font-family: Ubuntu;
src: url('/font/Ubuntu-Regular.woff2');
}
body {
font-family: Ubuntu, system-ui, sans-serif;
touch-action: manipulation; /* Prevents non-standard gestures such as double-tap to zoom */
}
a {
@apply hover:underline hover:cursor-pointer;
}
|