generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal.css
65 lines (56 loc) · 1.13 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
@font-face {
font-family: 'ginto';
src: url('fonts/ginto.otf') format('opentype');
}
@font-face {
font-family: 'woodpecker';
src: url('fonts/woodpecker.ttf') format('truetype');
}
@font-face {
font-family: 'normal';
src: url('fonts/normal.ttf') format('truetype');
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background-color: #222427;
}
a {
text-decoration: none; /* Remove default link underline */
color: inherit; /* Inherit text color from the parent */
}
body {
background-color: #0f0f0f;
font-size: 16px;
}
div {
display: block;
border-radius: 12px;
}
.container {
display: flex;
align-items: center;
}
.items {
display: flex;
position: relative;
max-width: 879px;
margin: 0 auto;
flex-direction: column;
color: #ffff;
font-family: 'normal';
overflow: hidden;
}
.items > div {
margin-bottom: 10px; /* Set the margin between child div elements */
}
@media (max-width: 980px) {
.container {
width: webkit-fill-available;
overflow: hidden;
}
.items {
width: 100%;
}
}