-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal.css
More file actions
142 lines (119 loc) · 2.73 KB
/
global.css
File metadata and controls
142 lines (119 loc) · 2.73 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css');
@import 'tailwindcss';
@plugin "daisyui" {
themes: light --default;
}
@theme {
--color-m: #6a8e3f;
--color-m-transparent: rgba(106, 142, 63, 0.04);
--color-m-hover: #6a8e3f33;
--color-md: #324160;
--color-ml: #6da2fe;
--color-mxl: #ecf5fe;
--color-s: #191919;
--color-sd: #333;
--color-sl: #d9d9d9;
--color-sxl: #dadada;
--color-res: #8b9aad;
--color-grad1: #5ba5f8;
--color-grad2: #7c81ff;
--text-4xl: 32px;
--text-3xl: 28px;
--text-2xl: 24px;
--text-xl: 20px;
--text-lg: 18px;
--text-mid: 16px;
--text-sm: 14px;
--spacing-normal: 20px;
--spacing-normal-half: 10px;
--spacing-mt: 24px;
--spacing-dock-height: 100px;
--radius-lg: 20px;
--radius-md: 12px;
}
@font-face {
font-family: 'Fredoka';
src: url('../assets/font/fredoka-variable.ttf') format('truetype');
font-weight: 600, 700;
}
:root {
font-family:
'Pretendard Variable',
'Pretendard',
-apple-system,
BlinkMacSystemFont,
system-ui,
Roboto,
'Helvetica Neue',
'Segoe UI',
'Apple SD Gothic Neo',
'Noto Sans KR',
'Malgun Gothic',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
sans-serif;
font-size: 16px;
color: #111;
letter-spacing: -0.48px;
}
/* Chrome, Safari, Edge, Opera */
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type='number'] {
-moz-appearance: textfield;
}
@layer utilities {
.container-mobile {
max-width: 390px;
margin: 0 auto;
overflow-x: hidden;
}
.scrollbar-hide {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
width: 0;
height: 0;
}
.scrollbar-hide::-webkit-scrollbar-thumb {
background: transparent; /* 혹시라도 Thumb이 남아있으면 제거 */
}
.scrollbar-hide::-webkit-scrollbar-track {
background: transparent; /* 트랙도 제거 */
}
.shadow-dock {
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}
.shadow-homeBox {
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
.overlay {
position: fixed;
inset: 0;
z-index: 300;
background-color: rgba(0, 0, 0, 0);
transition: background-color 0.3s ease-in-out;
}
.overlay-visible {
background-color: rgba(0, 0, 0, 0.2);
}
.logo {
font-family: Fredoka;
}
.perspective {
perspective: 1000px;
}
.transform-style {
transform-style: preserve-3d;
}
.backface-hidden {
backface-visibility: hidden;
}
}