|
1 | | -@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css"); |
2 | | -@import "tailwindcss"; |
| 1 | +@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css'); |
| 2 | +@import 'tailwindcss'; |
| 3 | +@plugin "daisyui" { |
| 4 | + themes: light --default; |
| 5 | +} |
3 | 6 |
|
4 | 7 | @theme { |
5 | | - --color-m: #377ff8; |
| 8 | + --color-m: #6a8e3f; |
| 9 | + --color-m-transparent: rgba(106, 142, 63, 0.04); |
| 10 | + --color-m-hover: #6a8e3f33; |
6 | 11 | --color-md: #324160; |
7 | 12 | --color-ml: #6da2fe; |
8 | 13 | --color-mxl: #ecf5fe; |
9 | 14 |
|
10 | | - --color-s: #767676; |
| 15 | + --color-s: #191919; |
11 | 16 | --color-sd: #333; |
12 | | - --color-sl: #dadada; |
13 | | - --color-sxl: #f5f5f5; |
| 17 | + --color-sl: #d9d9d9; |
| 18 | + --color-sxl: #dadada; |
14 | 19 |
|
15 | 20 | --color-res: #8b9aad; |
16 | 21 |
|
|
29 | 34 | --spacing-normal: 20px; |
30 | 35 | --spacing-normal-half: 10px; |
31 | 36 | --spacing-mt: 24px; |
32 | | - |
| 37 | + --spacing-dock-height: 100px; |
33 | 38 | --radius-lg: 20px; |
34 | 39 | --radius-md: 12px; |
35 | 40 | } |
36 | 41 |
|
37 | 42 | @font-face { |
38 | | - font-family: "Fredoka"; |
39 | | - src: url("../assets/font/fredoka-variable.ttf") format("truetype"); |
| 43 | + font-family: 'Fredoka'; |
| 44 | + src: url('../assets/font/fredoka-variable.ttf') format('truetype'); |
40 | 45 | font-weight: 600, 700; |
41 | 46 | } |
42 | 47 |
|
43 | 48 | :root { |
44 | 49 | font-family: |
45 | | - "Pretendard Variable", |
46 | | - "Pretendard", |
| 50 | + 'Pretendard Variable', |
| 51 | + 'Pretendard', |
47 | 52 | -apple-system, |
48 | 53 | BlinkMacSystemFont, |
49 | 54 | system-ui, |
50 | 55 | Roboto, |
51 | | - "Helvetica Neue", |
52 | | - "Segoe UI", |
53 | | - "Apple SD Gothic Neo", |
54 | | - "Noto Sans KR", |
55 | | - "Malgun Gothic", |
56 | | - "Apple Color Emoji", |
57 | | - "Segoe UI Emoji", |
58 | | - "Segoe UI Symbol", |
| 56 | + 'Helvetica Neue', |
| 57 | + 'Segoe UI', |
| 58 | + 'Apple SD Gothic Neo', |
| 59 | + 'Noto Sans KR', |
| 60 | + 'Malgun Gothic', |
| 61 | + 'Apple Color Emoji', |
| 62 | + 'Segoe UI Emoji', |
| 63 | + 'Segoe UI Symbol', |
59 | 64 | sans-serif; |
60 | 65 | font-size: 16px; |
61 | 66 | color: #111; |
62 | 67 | letter-spacing: -0.48px; |
63 | 68 | } |
64 | 69 |
|
65 | 70 | /* Chrome, Safari, Edge, Opera */ |
66 | | -input[type="number"]::-webkit-outer-spin-button, |
67 | | -input[type="number"]::-webkit-inner-spin-button { |
| 71 | +input[type='number']::-webkit-outer-spin-button, |
| 72 | +input[type='number']::-webkit-inner-spin-button { |
68 | 73 | -webkit-appearance: none; |
69 | 74 | margin: 0; |
70 | 75 | } |
71 | 76 |
|
72 | 77 | /* Firefox */ |
73 | | -input[type="number"] { |
| 78 | +input[type='number'] { |
74 | 79 | -moz-appearance: textfield; |
75 | 80 | } |
76 | 81 |
|
77 | 82 | @layer utilities { |
78 | 83 | .container-mobile { |
79 | | - max-width: 402px; |
| 84 | + max-width: 390px; |
80 | 85 | margin: 0 auto; |
| 86 | + overflow-x: hidden; |
| 87 | + } |
| 88 | + .scrollbar-hide { |
| 89 | + -ms-overflow-style: none; /* IE and Edge */ |
| 90 | + scrollbar-width: none; /* Firefox */ |
81 | 91 | } |
82 | 92 |
|
83 | 93 | .scrollbar-hide::-webkit-scrollbar { |
84 | | - display: none; |
| 94 | + display: none; /* Chrome, Safari, Opera */ |
| 95 | + width: 0; |
| 96 | + height: 0; |
85 | 97 | } |
86 | 98 |
|
87 | | - .scrollbar-hide { |
88 | | - -ms-overflow-style: none; |
89 | | - scrollbar-width: none; |
| 99 | + .scrollbar-hide::-webkit-scrollbar-thumb { |
| 100 | + background: transparent; /* 혹시라도 Thumb이 남아있으면 제거 */ |
| 101 | + } |
| 102 | + |
| 103 | + .scrollbar-hide::-webkit-scrollbar-track { |
| 104 | + background: transparent; /* 트랙도 제거 */ |
| 105 | + } |
| 106 | + |
| 107 | + .shadow-dock { |
| 108 | + box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12); |
| 109 | + } |
| 110 | + |
| 111 | + .shadow-homeBox { |
| 112 | + box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12); |
90 | 113 | } |
91 | 114 |
|
92 | 115 | .overlay { |
|
0 commit comments