-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
38 lines (31 loc) · 908 Bytes
/
index.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
@font-face {
font-family: 'NanumSquare L';
src: url('./styles/fonts/NanumSquare_acL.ttf') format('truetype');
}
@font-face {
font-family: 'NanumSquare R';
src: url('./styles/fonts/NanumSquare_acR.ttf') format('truetype');
}
@font-face {
font-family: 'NanumSquare B';
src: url('./styles/fonts/NanumSquare_acB.ttf') format('truetype');
}
@font-face {
font-family: 'NanumSquare EB';
src: url('./styles/fonts/NanumSquare_acEB.ttf') format('truetype');
}
@font-face {
font-family: 'Typo_S';
src: url('./styles/fonts/Typo_S.ttf') format('truetype');
}
body::-webkit-scrollbar {
width: 8px; /* 스크롤바의 너비 */
}
body::-webkit-scrollbar-thumb {
height: 10px; /* 스크롤바의 길이 */
background: #252323c1; /* 스크롤바의 색상 */
border-radius: 10px;
}
body::-webkit-scrollbar-track {
background: rgba(33, 122, 244, 0.1); /*스크롤바 뒷 배경 색상*/
}