-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
171 lines (152 loc) · 2.99 KB
/
styles.css
File metadata and controls
171 lines (152 loc) · 2.99 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* Import DM Sans font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* Apply DM Sans font to all elements */
* {
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif !important;
}
/* Specific font weights for better typography */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif !important;
font-weight: 600 !important;
}
p,
span,
div,
li,
a {
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif !important;
font-weight: 400 !important;
}
code,
pre {
font-family: "Fira Code", "Monaco", "Cascadia Code", "Roboto Mono", Consolas,
"Courier New", monospace !important;
}
/* Existing styles */
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #d7e6ff;
border-radius: 12px;
}
.dark ::-webkit-scrollbar-thumb {
background-color: #868686;
border-radius: 12px;
}
/* custom-button css */
.custom-button {
border: 1px solid #0051ff;
padding: 5px 20px;
border-radius: 20px;
height: 40px;
transition: 500ms;
}
.custom-button:hover {
background-color: #0051ff;
color: white;
cursor: pointer;
}
.custom-button p {
margin-top: 0;
margin-bottom: 0;
}
.dark select option {
background-color: #131313 !important;
}
/* New badge styles */
.badge-new {
display: inline-block;
padding: 2px 6px;
font-size: 10px;
font-weight: 500;
background-color: #dbeafe;
color: #1d4ed8;
border-radius: 4px;
margin-left: 8px;
vertical-align: middle;
}
.dark .badge-new {
background-color: #1e3a8a;
color: #93c5fd;
}
/* Banner styles with premium gradient animation */
#banner {
background: linear-gradient(
110deg,
#3d0a1f,
#2e0d1f,
#1a0b2e,
#2d1b4e,
#4c1d95,
#5b21b6,
#7c3aed,
#5b21b6,
#4c1d95,
#2d1b4e,
#1a0b2e,
#2e0d1f,
#3d0a1f
);
background-size: 200% 100%;
animation: elegantFlow 20s ease-in-out infinite;
position: relative;
color: rgb(255, 255, 255);
padding: 12px 20px;
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
#banner::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.1),
transparent
);
animation: shine 6s ease-in-out infinite;
}
@keyframes elegantFlow {
0%, 100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
@keyframes shine {
0% {
left: -100%;
}
50%, 100% {
left: 100%;
}
}
#banner * {
color: white;
}
#banner strong {
font-weight: 700;
}
#banner a {
text-decoration: underline;
font-weight: 500;
}
#banner a:hover {
opacity: 0.8;
}