Spaces:
Runtime error
Runtime error
Commit
·
b1b9e97
1
Parent(s):
1e04b0f
button css updated
Browse files
app.py
CHANGED
|
@@ -75,6 +75,45 @@ footer {display:none !important}
|
|
| 75 |
border-radius: 0px !important;
|
| 76 |
opacity: 1 !important;
|
| 77 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
"""
|
| 79 |
|
| 80 |
with gr.Blocks(title="Describe Dataset | Data Science Dojo", css = css) as demo:
|
|
|
|
| 75 |
border-radius: 0px !important;
|
| 76 |
opacity: 1 !important;
|
| 77 |
}
|
| 78 |
+
|
| 79 |
+
.gr-button-lg {
|
| 80 |
+
z-index: 14;
|
| 81 |
+
width: 113px !important;
|
| 82 |
+
height: 30px !important;
|
| 83 |
+
left: 0px;
|
| 84 |
+
top: 0px;
|
| 85 |
+
padding: 0px;
|
| 86 |
+
cursor: pointer !important;
|
| 87 |
+
background: none rgb(17, 20, 45) !important;
|
| 88 |
+
border: none !important;
|
| 89 |
+
text-align: center !important;
|
| 90 |
+
font-size: 14px !important;
|
| 91 |
+
font-weight: 500 !important;
|
| 92 |
+
color: rgb(255, 255, 255) !important;
|
| 93 |
+
line-height: 1 !important;
|
| 94 |
+
border-radius: 6px !important;
|
| 95 |
+
transition: box-shadow 200ms ease 0s, background 200ms ease 0s !important;
|
| 96 |
+
box-shadow: none !important;
|
| 97 |
+
}
|
| 98 |
+
.gr-button-lg:hover{
|
| 99 |
+
z-index: 14;
|
| 100 |
+
width: 113px !important;
|
| 101 |
+
height: 30px !important;
|
| 102 |
+
left: 0px;
|
| 103 |
+
top: 0px;
|
| 104 |
+
padding: 0px;
|
| 105 |
+
cursor: pointer !important;
|
| 106 |
+
background: none rgb(37, 56, 133) !important;
|
| 107 |
+
border: none !important;
|
| 108 |
+
text-align: center !important;
|
| 109 |
+
font-size: 14px !important;
|
| 110 |
+
font-weight: 500 !important;
|
| 111 |
+
color: rgb(255, 255, 255) !important;
|
| 112 |
+
line-height: 1 !important;
|
| 113 |
+
border-radius: 6px !important;
|
| 114 |
+
transition: box-shadow 200ms ease 0s, background 200ms ease 0s !important;
|
| 115 |
+
box-shadow: rgb(0 0 0 / 23%) 0px 1px 7px 0px !important;
|
| 116 |
+
}
|
| 117 |
"""
|
| 118 |
|
| 119 |
with gr.Blocks(title="Describe Dataset | Data Science Dojo", css = css) as demo:
|