-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
67 lines (51 loc) · 1 KB
/
global.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Global */
@font-face {
font-family: 'Pretendard-Regular';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
* {
font-family: 'Pretendard-Regular', sans-serif;
}
html {
background-color: #25292e;
scroll-behavior: smooth;
overflow-x: hidden;
}
/* Classes */
.disabled {
pointer-events: none;
opacity: 0.5;
}
.text-stroke {
-webkit-text-stroke: 2px #fff;
}
.text-stroke-light {
-webkit-text-stroke: 2px #000;
}
.text-stroke-1 {
-webkit-text-stroke: 1px #fff;
}
.text-stroke-light-1 {
-webkit-text-stroke: 1px #000;
}
.word-spacing {
word-spacing: 3px;
}
/* Scroll styles */
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-track {
background: #25292e;
}
::-webkit-scrollbar-thumb {
background: #363c44;
}
::-webkit-scrollbar-thumb:hover {
background: #414851;
}