Enderchef commited on
Commit
84b7e23
·
verified ·
1 Parent(s): f3d62e2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -16
README.md CHANGED
@@ -1,20 +1,51 @@
1
- ---
2
- license: unknown
3
- ---
 
 
 
 
 
 
 
 
 
4
 
5
- <!-- Modern HTML embed inside Markdown -->
 
 
 
 
6
 
7
- <div style="
8
- background-color: #1e1e1e;
9
- color: #eee;
10
- padding: 1rem 1.5rem;
11
- border-radius: 8px;
12
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
13
- font-size: 1.1rem;
14
- max-width: 600px;
15
- margin: 1rem auto;
16
- box-shadow: 0 4px 12px rgba(0,0,0,0.6);
17
- text-align: center;
18
- ">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  Open a discussion in the <strong>Community</strong> tab to request a <code>GGUF</code> model.
20
  </div>
 
1
+ <style>
2
+ .message-box {
3
+ padding: 1rem 1.5rem;
4
+ border-radius: 8px;
5
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
6
+ font-size: 1.1rem;
7
+ max-width: 600px;
8
+ margin: 1rem auto;
9
+ text-align: center;
10
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
11
+ transition: background-color 0.3s ease, color 0.3s ease;
12
+ }
13
 
14
+ /* Light mode (default) */
15
+ .message-box {
16
+ background-color: #f0f0f0;
17
+ color: #222;
18
+ }
19
 
20
+ .message-box strong {
21
+ color: #0077cc;
22
+ }
23
+
24
+ .message-box code {
25
+ background-color: #ddd;
26
+ padding: 0.15rem 0.4rem;
27
+ border-radius: 4px;
28
+ font-family: monospace;
29
+ color: #d6336c;
30
+ }
31
+
32
+ /* Dark mode */
33
+ @media (prefers-color-scheme: dark) {
34
+ .message-box {
35
+ background-color: #1e1e1e;
36
+ color: #eee;
37
+ box-shadow: 0 4px 12px rgba(0,0,0,0.7);
38
+ }
39
+ .message-box strong {
40
+ color: #66aaff;
41
+ }
42
+ .message-box code {
43
+ background-color: #333;
44
+ color: #ff7fa1;
45
+ }
46
+ }
47
+ </style>
48
+
49
+ <div class="message-box">
50
  Open a discussion in the <strong>Community</strong> tab to request a <code>GGUF</code> model.
51
  </div>