datasciencedojo commited on
Commit
eec4275
·
1 Parent(s): fee337f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py CHANGED
@@ -68,6 +68,21 @@ div[data-testid="label"] {overflow-x: hidden !important; overflow-y: scroll !imp
68
  background-color: rgb(229,225,255) !important;
69
  }
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  """
72
 
73
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,examples=examples ,title="Handpose | Datascience Dojo", css=css)
 
68
  background-color: rgb(229,225,255) !important;
69
  }
70
 
71
+ .from-orange-400 {
72
+ --tw-gradient-from: rgb(17, 20, 45) !important;
73
+ --tw-gradient-to: rgb(255 150 51 / 0);
74
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
75
+ }
76
+ .group-hover\:from-orange-500{
77
+ --tw-gradient-from:rgb(17, 20, 45) !important;
78
+ --tw-gradient-to: rgb(37 56 133 / 37%);
79
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
80
+ }
81
+ .group:hover .group-hover\:text-orange-500{
82
+ --tw-text-opacity: 1 !important;
83
+ color:rgb(37 56 133 / var(--tw-text-opacity)) !important;
84
+ }
85
+
86
  """
87
 
88
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,examples=examples ,title="Handpose | Datascience Dojo", css=css)