Upload folder using huggingface_hub
Browse files- hate_speech_demo.py +13 -2
hate_speech_demo.py
CHANGED
|
@@ -687,8 +687,19 @@ def create_gradio_app():
|
|
| 687 |
|
| 688 |
/* Custom gray button style */
|
| 689 |
.gray-button {
|
| 690 |
-
background
|
| 691 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 692 |
}
|
| 693 |
"""
|
| 694 |
|
|
|
|
| 687 |
|
| 688 |
/* Custom gray button style */
|
| 689 |
.gray-button {
|
| 690 |
+
background: #4285F4 !important;
|
| 691 |
+
color: #000000 !important;
|
| 692 |
+
font-weight: bold;
|
| 693 |
+
border-radius: 5px;
|
| 694 |
+
padding: 10px 15px;
|
| 695 |
+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
| 696 |
+
transition: all 0.3s ease;
|
| 697 |
+
font-family: 'All Round Gothic Demi', 'Poppins', sans-serif !important;
|
| 698 |
+
cursor: pointer;
|
| 699 |
+
display: inline-block;
|
| 700 |
+
text-decoration: none !important;
|
| 701 |
+
margin-top: 10px;
|
| 702 |
+
margin-bottom: 5px;
|
| 703 |
}
|
| 704 |
"""
|
| 705 |
|