ZENLLC commited on
Commit
93b3936
·
verified ·
1 Parent(s): 90d804d

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +39 -0
style.css ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --zen-accent-h: 220; /* Change for color theme */
3
+ --zen-accent-s: 95%;
4
+ --zen-accent-l: 55%;
5
+ --zen-font: "Inter", "Segoe UI", Arial, sans-serif;
6
+ }
7
+
8
+ html, body, * {
9
+ font-family: var(--zen-font);
10
+ font-size: 1.08em;
11
+ }
12
+
13
+ .gr-button-primary {
14
+ background: hsl(var(--zen-accent-h) var(--zen-accent-s) var(--zen-accent-l));
15
+ color: white;
16
+ border: none;
17
+ }
18
+ .gr-button-primary:hover { filter: brightness(1.1); }
19
+
20
+ .gr-chatbot .message.user {
21
+ background: hsla(var(--zen-accent-h) var(--zen-accent-s) calc(var(--zen-accent-l) + 25%), .18);
22
+ }
23
+ .gr-chatbot .message.bot {
24
+ background: hsla(var(--zen-accent-h) var(--zen-accent-s) calc(var(--zen-accent-l) + 15%), .13);
25
+ }
26
+
27
+ .gr-image, .gr-plot {
28
+ border-radius: 12px;
29
+ box-shadow: 0 4px 16px rgba(0,0,0,.07);
30
+ margin-top: 6px;
31
+ }
32
+
33
+ .gr-textbox, .gr-chatbot {
34
+ border-radius: 8px;
35
+ }
36
+
37
+ body {
38
+ background: #f7fafe;
39
+ }