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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: Ubuntu;
src: url('/fonts/Ubuntu-Regular.woff2');
}
body {
font-family: Ubuntu, system-ui, sans-serif;
touch-action: manipulation; /* Prevents non-standard gestures such as double-tap to zoom */
}
/* 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;
}
.fadein-leave-to {
opacity: 0;
}
.fadein-leave-active {
transition-property: opacity;
transition-duration: 300ms;
transition-timing-function: ease-out;
}
.animate-expand-shrink {
animation-name: expand-shrink;
animation-duration: 300ms;
animation-iteration-count: 1;
animation-timing-function: ease-in-out;
}
@keyframes expand-shrink {
from {
transform: scale(1, 1);
}
50% {
transform: scale(1.1, 1.1);
}
to {
transform: scale(1, 1);
}
}
.animate-shrink-expand {
animation-name: shrink-expand;
animation-duration: 300ms;
animation-iteration-count: 1;
animation-timing-function: ease-in-out;
}
@keyframes shrink-expand {
from {
transform: translate3d(0,0,0) scale(1, 1);
}
50% {
transform: translate3d(0,0,0) scale(0.9, 0.9);
}
to {
transform: translate3d(0,0,0) scale(1, 1);
}
}
.animate-red-then-fade {
animation-name: red-then-fade;
animation-duration: 500ms;
animation-timing-function: ease-in;
}
@keyframes red-then-fade {
from {
background-color: rgba(255,0,0,0.2);
}
to {
background-color: transparent;
}
}
|