Mel Seto commited on
Commit
c9074df
·
1 Parent(s): 75a7651

add style.css

Browse files
Files changed (1) hide show
  1. style.css +48 -0
style.css ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ========================
2
+ Dark Mode Default
3
+ ======================== */
4
+ body, .gradio-container {
5
+ background-color: #1a1a2e;
6
+ color: #f0f0f0;
7
+ font-family: Arial, sans-serif;
8
+ }
9
+
10
+ .idiom-output {
11
+ font-size: 2rem;
12
+ font-weight: bold;
13
+ text-align: center;
14
+ color: #ff6f61;
15
+ margin-bottom: 0.5em;
16
+ }
17
+
18
+ .explanation-output {
19
+ font-size: 1rem;
20
+ line-height: 1.5;
21
+ color: #dcdcdc;
22
+ text-align: center;
23
+ }
24
+
25
+ /* Buttons */
26
+ .gradio-container .gr-button {
27
+ background-color: #3a3a5e;
28
+ color: #ffffff;
29
+ border: 1px solid #5c5c8a;
30
+ font-weight: bold;
31
+ }
32
+ .gradio-container .gr-button:hover {
33
+ background-color: #505080;
34
+ }
35
+
36
+ /* Textboxes */
37
+ .gradio-container .gr-textbox textarea {
38
+ background-color: #2a2a45;
39
+ color: #ffffff;
40
+ border: 1px solid #5c5c8a;
41
+ }
42
+
43
+ /* Examples */
44
+ .gradio-container .gr-examples {
45
+ background-color: #2a2a45;
46
+ border: 1px solid #5c5c8a;
47
+ color: #ffffff;
48
+ }