Kabatubare commited on
Commit
5e07b28
·
verified ·
1 Parent(s): 60110cd

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +49 -9
style.css CHANGED
@@ -1,12 +1,52 @@
 
 
 
 
 
 
1
  .gradio-container {
2
- max-width: 690px! important;
 
 
 
 
3
  }
4
 
5
- #share-btn-container{padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; max-width: 13rem; margin-left: auto;margin-top: 0.35em;}
6
- div#share-btn-container > div {flex-direction: row;background: black;align-items: center}
7
- #share-btn-container:hover {background-color: #060606}
8
- #share-btn {all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.5rem !important; padding-bottom: 0.5rem !important;right:0;font-size: 15px;}
9
- #share-btn * {all: unset}
10
- #share-btn-container div:nth-child(-n+2){width: auto !important;min-height: 0px !important;}
11
- #share-btn-container .wrap {display: none !important}
12
- #share-btn-container.hidden {display: none!important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Roboto', sans-serif;
3
+ background: #000; /* Deep space black */
4
+ color: #fff; /* Starlight white */
5
+ }
6
+
7
  .gradio-container {
8
+ max-width: 800px !important;
9
+ background-color: #0a0a0a; /* Starfleet console black */
10
+ border: 1px solid #0096ff; /* Phaser beam blue */
11
+ border-radius: 5px;
12
+ padding: 20px;
13
  }
14
 
15
+ .gradio-header, .gradio-footer {
16
+ background-color: #131313; /* Dark matter grey */
17
+ color: #ffffff;
18
+ }
19
+
20
+ .gradio-title {
21
+ color: #0096ff; /* Science officer blue */
22
+ }
23
+
24
+ .gradio-description {
25
+ color: #aaa; /* Nebula grey */
26
+ }
27
+
28
+ .gradio-input, .gradio-output, .gradio-button, .gradio-dropdown, .gradio-textbox {
29
+ background-color: #262626; /* Shuttlecraft grey */
30
+ border: 1px solid #0096ff; /* Warp speed blue */
31
+ color: #fff;
32
+ }
33
+
34
+ .gradio-button:hover {
35
+ background-color: #005f99; /* Red alert red */
36
+ color: #fff;
37
+ }
38
+
39
+ .gradio-label {
40
+ color: #ffffff; /* Phaser beam blue */
41
+ }
42
+
43
+ #share-btn-container, .gradio-button {
44
+ background-color: #262626; /* Shuttlecraft grey */
45
+ border-color: #0096ff; /* Phaser beam blue */
46
+ color: #ffffff;
47
+ }
48
+
49
+ #share-btn:hover {
50
+ background-color: #005f99; /* Red alert red */
51
+ color: #ffffff;
52
+ }