-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
41 lines (35 loc) · 899 Bytes
/
style.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
@font-face {
font-family: 'SuisseIntl';
font-weight: 300;
src: url('./src/assets/fonts/SuisseIntl-Light.woff') format('woff');
}
@font-face {
font-family: 'SuisseIntl';
font-weight: 400;
src: url('./src/assets/fonts/SuisseIntl-Regular.woff') format('woff');
}
@font-face {
font-family: 'SuisseIntl';
font-weight: 500;
src: url('./src/assets/fonts/SuisseIntl-Medium.woff') format('woff');
}
@font-face {
font-family: 'SuisseIntl';
font-weight: 600;
src: url('./src/assets/fonts/SuisseIntl-SemiBold.ttf') format('ttf');
}
body {
font-family: 'SuisseIntl', sans-serif;
scroll-behavior: smooth;
}
/* scroll-bar */
::-webkit-scrollbar {
width: 15px;
background-color: #f6f6f6;
}
::-webkit-scrollbar-thumb {
border-radius: 999px;
background-color: #c0c0c0;
border: 3px solid transparent;
background-clip: content-box;
}