-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (80 loc) · 1.54 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (80 loc) · 1.54 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
* {
z-index: inherit;
}
html, body {
z-index: 0;
display: flex;
flex-direction: column;
width: 100%;
padding: 0;
margin: 0;
align-items: center;
background-color: #222222;
scroll-behavior: smooth;
}
body {
gap: 100px;
}
*::-webkit-scrollbar {
width: 20px;
}
*::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 20%);
width: 10px;
border: 5px solid #222222;
border-radius: 10px;
}
*::-webkit-scrollbar-track, *::-webkit-scrollbar-button, *::-webkit-scrollbar-corner {
visibility: hidden;
}
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.2) #222222;
}
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
main {
z-index: 100;
display: flex;
flex-direction: column;
align-items: start;
justify-content: center;
gap: 10px;
margin: 200px 0 200px 0;
padding: 30px;
width: 45%;
background-color: rgba(34, 34, 34, 50%);
}
quote {
z-index: 300;
width: 80%;
margin: 30px 5%;
padding: 30px 5%;
border-radius: 10px;
background-color: #333333;
font-size: 18px;
}
.content {
z-index: 200;
display: flex;
flex-direction: row;
width: 100%;
min-height: 100vw;
justify-content: space-between;
align-items: start;
}
.error {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
gap: 20px;
}
main img {
width: 100%;
}