|
5 | 5 | @tailwind utilities; |
6 | 6 |
|
7 | 7 | :root { |
8 | | - font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; |
9 | | - font-weight: 400; |
10 | | - font-synthesis: none; |
11 | | - text-rendering: optimizeLegibility; |
12 | | - -webkit-font-smoothing: antialiased; |
13 | | - -moz-osx-font-smoothing: grayscale; |
| 8 | + font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; |
| 9 | + font-weight: 400; |
| 10 | + font-synthesis: none; |
| 11 | + text-rendering: optimizeLegibility; |
| 12 | + -webkit-font-smoothing: antialiased; |
| 13 | + -moz-osx-font-smoothing: grayscale; |
14 | 14 | } |
15 | 15 |
|
16 | 16 | @theme { |
17 | | - --color-sidebar: #171720; |
18 | | - --color-sidebarfg: #8e8eab; |
19 | | - --color-option: #20202f; |
20 | | - --color-option-select: #3d3d4f; |
| 17 | + --color-sidebar: #171720; |
| 18 | + --color-sidebarfg: #8e8eab; |
| 19 | + --color-option: #20202f; |
| 20 | + --color-option-select: #3d3d4f; |
21 | 21 |
|
22 | | - --color-data-module-bg: #20202f; |
23 | | - --color-dropdown-menu-bg: #8E8EAB; |
24 | | - --color-data-textbox-bg: #35354c; |
| 22 | + --color-data-module-bg: #20202f; |
| 23 | + --color-dropdown-menu-bg: #8e8eab; |
| 24 | + --color-dropdown-menu-secondary: #747492; |
| 25 | + --color-data-textbox-bg: #35354c; |
25 | 26 |
|
26 | | - --font-heading: "ZipSonik", sans-serif; |
27 | | - --font-footer: "Days One", sans-serif; |
| 27 | + --font-heading: "ZipSonik", sans-serif; |
| 28 | + --font-footer: "Days One", sans-serif; |
28 | 29 | } |
29 | 30 |
|
30 | 31 | body { |
31 | | - background-color: #0d0c11; |
| 32 | + background-color: #0d0c11; |
32 | 33 | } |
33 | 34 |
|
34 | 35 | p { |
35 | | - margin-bottom: 0 !important; |
| 36 | + margin-bottom: 0 !important; |
36 | 37 | } |
37 | 38 |
|
38 | 39 | /* temporary local fonts */ |
39 | 40 |
|
40 | 41 | @font-face { |
41 | | - font-family: ZipSonik; |
42 | | - src: url("./assets/fonts/ZipSonik-Italic.otf") format("opentype"); |
43 | | - font-style: normal; |
44 | | - font-display: swap; |
| 42 | + font-family: ZipSonik; |
| 43 | + src: url("./assets/fonts/ZipSonik-Italic.otf") format("opentype"); |
| 44 | + font-style: normal; |
| 45 | + font-display: swap; |
45 | 46 | } |
46 | 47 |
|
47 | 48 | @font-face { |
48 | | - font-family: Days One; |
49 | | - src: url("./assets/fonts/DaysOne-Regular.ttf") format("truetype"); |
50 | | - font-style: normal; |
51 | | - font-display: swap; |
52 | | - font-weight: 400; |
| 49 | + font-family: Days One; |
| 50 | + src: url("./assets/fonts/DaysOne-Regular.ttf") format("truetype"); |
| 51 | + font-style: normal; |
| 52 | + font-display: swap; |
| 53 | + font-weight: 400; |
53 | 54 | } |
54 | 55 |
|
55 | 56 | @layer utilities { |
56 | | - @keyframes tab-in { |
57 | | - from { |
58 | | - transform: scaleX(0); |
| 57 | + @keyframes tab-in { |
| 58 | + from { |
| 59 | + transform: scaleX(0); |
| 60 | + } |
| 61 | + to { |
| 62 | + transform: scaleX(1); |
| 63 | + } |
59 | 64 | } |
60 | | - to { |
61 | | - transform: scaleX(1); |
| 65 | + .animate-tab-in { |
| 66 | + animation: tab-in 300ms ease-out forwards; |
| 67 | + transform-origin: left; |
62 | 68 | } |
63 | | - } |
64 | | - .animate-tab-in { |
65 | | - animation: tab-in 300ms ease-out forwards; |
66 | | - transform-origin: left; |
67 | | - } |
68 | 69 | } |
69 | 70 |
|
70 | 71 | .avoid-break { |
|
0 commit comments