ZENLLC commited on
Commit
aa213a2
·
verified ·
1 Parent(s): 4468e2d

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +43 -0
style.css ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --accent: 240;
3
+ --sat: 90%;
4
+ --light: 55%;
5
+ --font: "Inter", "Segoe UI", sans-serif;
6
+ }
7
+
8
+ html, body, * {
9
+ font-family: var(--font);
10
+ font-size: 1.05em;
11
+ }
12
+
13
+ .gr-button-primary {
14
+ background: hsl(var(--accent), var(--sat), var(--light));
15
+ color: white;
16
+ border: none;
17
+ }
18
+
19
+ .gr-button-primary:hover {
20
+ filter: brightness(1.1);
21
+ }
22
+
23
+ #zen-header {
24
+ color: hsl(var(--accent), var(--sat), 40%);
25
+ font-size: 1.4em;
26
+ margin-bottom: 1em;
27
+ }
28
+
29
+ .gr-chatbot .message.user,
30
+ .gr-chatbot .message.bot {
31
+ color: white !important;
32
+ }
33
+
34
+ table {
35
+ border-collapse: collapse;
36
+ margin-top: 10px;
37
+ width: 100%;
38
+ }
39
+
40
+ th, td {
41
+ padding: 8px 12px;
42
+ border: 1px solid #ccc;
43
+ }