A progressive web app to display the angle bisector of two angles given by zodiac sign, degrees and minutes.
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5@layer base {
6 @font-face {
7 font-family: "DejaVuSans";
8 font-style: normal;
9 font-weight: 400;
10 font-display: swap;
11 src: url("./DejaVuSans.ttf");
12 }
13 @font-face {
14 font-family: "DejaVuSans";
15 font-style: normal;
16 font-weight: 700;
17 font-display: swap;
18 src: url("./DejaVuSans-Bold.ttf");
19 }
20 @font-face {
21 font-family: "DejaVuSans";
22 font-style: oblique;
23 font-weight: 400;
24 font-display: swap;
25 src: url("./DejaVuSans-Oblique.ttf");
26 }
27 @font-face {
28 font-family: "DejaVuSans";
29 font-style: oblique;
30 font-weight: 700;
31 font-display: swap;
32 src: url("./DejaVuSans-BoldOblique.ttf");
33 }
34}