Akoda35 commited on
Commit
0d5b34d
·
verified ·
1 Parent(s): 36cc59b

Upload styles.css

Browse files
Files changed (1) hide show
  1. theme/static/css/dist/styles.css +64 -0
theme/static/css/dist/styles.css ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ /* Custom scrollbar styles */
6
+ ::-webkit-scrollbar {
7
+ width: 8px;
8
+ height: 8px;
9
+ }
10
+
11
+ ::-webkit-scrollbar-track {
12
+ background: #161b22;
13
+ }
14
+
15
+ ::-webkit-scrollbar-thumb {
16
+ background: #30363d;
17
+ border-radius: 4px;
18
+ }
19
+
20
+ ::-webkit-scrollbar-thumb:hover {
21
+ background: #484f58;
22
+ }
23
+
24
+ /* Font settings */
25
+ .font-mono {
26
+ font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
27
+ }
28
+
29
+ /* Custom utility classes */
30
+ @layer utilities {
31
+ .gradient-text {
32
+ background: linear-gradient(135deg, #58a6ff 0%, #3fb950 100%);
33
+ -webkit-background-clip: text;
34
+ -webkit-text-fill-color: transparent;
35
+ background-clip: text;
36
+ }
37
+
38
+ .glow-accent {
39
+ box-shadow: 0 0 20px rgba(88, 166, 255, 0.3);
40
+ }
41
+ }
42
+
43
+ /* Toast notification animations */
44
+ @keyframes toastSlideIn {
45
+ from {
46
+ transform: translateX(100%);
47
+ opacity: 0;
48
+ }
49
+ to {
50
+ transform: translateX(0);
51
+ opacity: 1;
52
+ }
53
+ }
54
+
55
+ @keyframes toastSlideOut {
56
+ from {
57
+ transform: translateX(0);
58
+ opacity: 1;
59
+ }
60
+ to {
61
+ transform: translateX(100%);
62
+ opacity: 0;
63
+ }
64
+ }