datasciencedojo commited on
Commit
6bb729f
1 Parent(s): f34c738

button css chnages

Browse files
Files changed (1) hide show
  1. app.py +40 -0
app.py CHANGED
@@ -71,6 +71,46 @@ img.gr-sample-image:hover, video.gr-sample-video:hover {
71
  --tw-border-opacity: 1;
72
  border-color: rgb(37, 56, 133) !important;
73
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  """
75
 
76
  with gr.Blocks(title="Pneumonia Detection | Data Science Dojo", css = css) as demo:
 
71
  --tw-border-opacity: 1;
72
  border-color: rgb(37, 56, 133) !important;
73
  }
74
+
75
+ .gr-button-lg {
76
+ z-index: 14;
77
+ width: 113px;
78
+ height: 30px;
79
+ left: 0px;
80
+ top: 0px;
81
+ padding: 0px;
82
+ cursor: pointer !important;
83
+ background: none rgb(17, 20, 45) !important;
84
+ border: none !important;
85
+ text-align: center !important;
86
+ font-size: 14px !important;
87
+ font-weight: 500 !important;
88
+ color: rgb(255, 255, 255) !important;
89
+ line-height: 1 !important;
90
+ border-radius: 6px !important;
91
+ transition: box-shadow 200ms ease 0s, background 200ms ease 0s !important;
92
+ box-shadow: none !important;
93
+ }
94
+ .gr-button-lg:hover{
95
+ z-index: 14;
96
+ width: 113px;
97
+ height: 30px;
98
+ left: 0px;
99
+ top: 0px;
100
+ padding: 0px;
101
+ cursor: pointer !important;
102
+ background: none rgb(37, 56, 133) !important;
103
+ border: none !important;
104
+ text-align: center !important;
105
+ font-size: 14px !important;
106
+ font-weight: 500 !important;
107
+ color: rgb(255, 255, 255) !important;
108
+ line-height: 1 !important;
109
+ border-radius: 6px !important;
110
+ transition: box-shadow 200ms ease 0s, background 200ms ease 0s !important;
111
+ box-shadow: rgb(0 0 0 / 23%) 0px 1px 7px 0px !important;
112
+ }
113
+
114
  """
115
 
116
  with gr.Blocks(title="Pneumonia Detection | Data Science Dojo", css = css) as demo: