ghostai1 commited on
Commit
5fcc34f
·
verified ·
1 Parent(s): 54d8c8e

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +85 -18
style.css CHANGED
@@ -1,28 +1,95 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
+ font-family: 'Inter', sans-serif;
3
+ background-color: #111827;
4
+ color: #f3f4f6;
5
  }
6
 
7
+ .hero-bg {
8
+ background: linear-gradient(to right, #1f2937, #374151);
 
9
  }
10
 
11
+ .accent-color {
12
+ color: #3b82f6;
 
 
 
13
  }
14
 
15
+ .shadow-hover {
16
+ transition: box-shadow 0.3s ease;
 
 
 
 
17
  }
18
 
19
+ .shadow-hover:hover {
20
+ box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
21
  }
22
+
23
+ .icon {
24
+ width: 1.5rem;
25
+ height: 1.5rem;
26
+ }
27
+
28
+ #cusdis_thread {
29
+ margin-top: 2rem;
30
+ padding: 1.5rem;
31
+ padding-bottom: 30px;
32
+ background-color: #1f2937;
33
+ border-radius: 0.5rem;
34
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
35
+ min-height: 200px;
36
+ overflow: auto;
37
+ }
38
+
39
+ .mermaid {
40
+ text-align: center;
41
+ background-color: #1f2937;
42
+ padding: 1rem;
43
+ border-radius: 0.5rem;
44
+ margin-top: 1rem;
45
+ }
46
+
47
+ .colored-bullet::before {
48
+ content: '•';
49
+ font-size: 1.5rem;
50
+ margin-right: 0.5rem;
51
+ }
52
+
53
+ .blue-circle::before {
54
+ color: #3b82f6;
55
+ }
56
+
57
+ .green-circle::before {
58
+ color: #10b981;
59
+ }
60
+
61
+ .purple-circle::before {
62
+ color: #a855f7;
63
+ }
64
+
65
+ .yellow-circle::before {
66
+ color: #eab308;
67
+ }
68
+
69
+ .red-circle::before {
70
+ color: #ef4444;
71
+ }
72
+
73
+ .embed-container {
74
+ position: relative;
75
+ padding-bottom: 56.25%;
76
+ height: 0;
77
+ overflow: hidden;
78
+ max-width: 100%;
79
+ }
80
+
81
+ .embed-container iframe {
82
+ position: absolute;
83
+ top: 0;
84
+ left: 0;
85
+ width: 100%;
86
+ height: 100%;
87
+ border: 0;
88
+ }
89
+
90
+ pre code {
91
+ font-family: 'Courier New', Courier, monospace;
92
+ font-size: 0.9rem;
93
+ line-height: 1.5;
94
+ color: #f3f4f6;
95
+ }