-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (96 loc) · 2.09 KB
/
style.css
File metadata and controls
100 lines (96 loc) · 2.09 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
html,
body {
scroll-behavior: smooth;
}
.glass {
background: radial-gradient(
1200px 600px at 10% -10%,
rgba(0, 31, 77, 0.35),
transparent 60%
),
radial-gradient(
1200px 600px at 110% 10%,
rgba(0, 31, 77, 0.25),
transparent 60%
),
rgba(255, 255, 255, 0.06);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35),
inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.divider {
height: 1px;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
:root {
color-scheme: dark;
}
/* Buttons (used by 404 and other pages) */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: all 150ms ease;
color: inherit;
border: 1px solid transparent;
background: transparent;
}
.btn:focus {
outline: none;
box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.12);
}
.btn:active {
transform: translateY(1px);
}
.btn-primary {
background: linear-gradient(180deg, #1e4fd6, #1546c9);
color: #fff;
border-color: rgba(0, 0, 0, 0.08);
box-shadow: 0 8px 20px rgba(13, 59, 153, 0.18);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 14px 28px rgba(13, 59, 153, 0.22);
}
.btn-primary:disabled {
opacity: 0.5;
cursor: not-allowed;
transform: none;
}
.btn-ghost {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.06);
color: inherit;
}
.btn-ghost:hover {
background: rgba(255, 255, 255, 0.02);
transform: translateY(-1px);
}
.btn-sm {
padding: 6px 10px;
font-size: 0.85rem;
border-radius: 8px;
}
.btn-lg {
padding: 14px 18px;
font-size: 1rem;
border-radius: 12px;
}