datasciencedojo commited on
Commit
c559b3c
·
1 Parent(s): c176f91

Update app.py

Browse files

update labels style

Files changed (1) hide show
  1. app.py +18 -0
app.py CHANGED
@@ -60,6 +60,24 @@ footer {display:none !important}
60
  background-color: rgb(229,225,255) !important;
61
  }
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  """
64
 
65
  demo = gr.Interface(fn=fill_mask, inputs=gr.Textbox(lines=1, label="Input"), outputs=gr.Label(label="Output"),title="Fill Mask | Datascience Dojo", examples=examples, css=css)
 
60
  background-color: rgb(229,225,255) !important;
61
  }
62
 
63
+ .to-orange-200 {
64
+ --tw-gradient-to: rgb(37 56 133 / 37%) !important;
65
+ }
66
+ .from-orange-400 {
67
+ --tw-gradient-from: rgb(17, 20, 45) !important;
68
+ --tw-gradient-to: rgb(255 150 51 / 0);
69
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
70
+ }
71
+ .group-hover\:from-orange-500{
72
+ --tw-gradient-from:rgb(17, 20, 45) !important;
73
+ --tw-gradient-to: rgb(37 56 133 / 37%);
74
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
75
+ }
76
+ .group:hover .group-hover\:text-orange-500{
77
+ --tw-text-opacity: 1 !important;
78
+ color:rgb(37 56 133 / var(--tw-text-opacity)) !important;
79
+ }
80
+
81
  """
82
 
83
  demo = gr.Interface(fn=fill_mask, inputs=gr.Textbox(lines=1, label="Input"), outputs=gr.Label(label="Output"),title="Fill Mask | Datascience Dojo", examples=examples, css=css)