Spaces:
Running
Running
Delete app.css
Browse files
app.css
DELETED
|
@@ -1,190 +0,0 @@
|
|
| 1 |
-
|
| 2 |
-
/* Full width UI */
|
| 3 |
-
.gradio-container {
|
| 4 |
-
background: rgba(255, 255, 255, 0.98);
|
| 5 |
-
padding: 40px 50px;
|
| 6 |
-
margin: 30px auto;
|
| 7 |
-
width: 100% !important;
|
| 8 |
-
max-width: 1400px !important;
|
| 9 |
-
border-radius: 20px;
|
| 10 |
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
| 11 |
-
}
|
| 12 |
-
|
| 13 |
-
/* Background */
|
| 14 |
-
body {
|
| 15 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 16 |
-
margin: 0;
|
| 17 |
-
padding: 0;
|
| 18 |
-
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
| 19 |
-
}
|
| 20 |
-
|
| 21 |
-
/* Title styling */
|
| 22 |
-
h1 {
|
| 23 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 24 |
-
background-clip: text;
|
| 25 |
-
-webkit-background-clip: text;
|
| 26 |
-
-webkit-text-fill-color: transparent;
|
| 27 |
-
font-weight: 700;
|
| 28 |
-
margin-bottom: 10px;
|
| 29 |
-
}
|
| 30 |
-
|
| 31 |
-
/* Button styles */
|
| 32 |
-
button.primary {
|
| 33 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
|
| 34 |
-
border: none;
|
| 35 |
-
color: white !important;
|
| 36 |
-
font-weight: 600;
|
| 37 |
-
padding: 15px 30px !important;
|
| 38 |
-
font-size: 18px !important;
|
| 39 |
-
transition: all 0.3s ease;
|
| 40 |
-
text-transform: uppercase;
|
| 41 |
-
letter-spacing: 1px;
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
button.primary:hover {
|
| 45 |
-
transform: translateY(-3px);
|
| 46 |
-
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
|
| 47 |
-
}
|
| 48 |
-
|
| 49 |
-
/* Input styles */
|
| 50 |
-
.textbox, textarea, input[type="text"], input[type="number"] {
|
| 51 |
-
border: 2px solid #e5e7eb;
|
| 52 |
-
border-radius: 12px;
|
| 53 |
-
padding: 15px;
|
| 54 |
-
font-size: 16px;
|
| 55 |
-
transition: all 0.3s ease;
|
| 56 |
-
background: white;
|
| 57 |
-
}
|
| 58 |
-
|
| 59 |
-
.textbox:focus, textarea:focus, input[type="text"]:focus {
|
| 60 |
-
border-color: #667eea;
|
| 61 |
-
outline: none;
|
| 62 |
-
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
| 63 |
-
}
|
| 64 |
-
|
| 65 |
-
/* Card style */
|
| 66 |
-
.card {
|
| 67 |
-
background: white;
|
| 68 |
-
border-radius: 16px;
|
| 69 |
-
padding: 25px;
|
| 70 |
-
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
|
| 71 |
-
margin-bottom: 25px;
|
| 72 |
-
border: 1px solid rgba(102, 126, 234, 0.1);
|
| 73 |
-
}
|
| 74 |
-
|
| 75 |
-
/* Dropdown styles */
|
| 76 |
-
.dropdown {
|
| 77 |
-
border: 2px solid #e5e7eb;
|
| 78 |
-
border-radius: 12px;
|
| 79 |
-
padding: 12px;
|
| 80 |
-
background: white;
|
| 81 |
-
transition: all 0.3s ease;
|
| 82 |
-
}
|
| 83 |
-
|
| 84 |
-
.dropdown:hover {
|
| 85 |
-
border-color: #667eea;
|
| 86 |
-
}
|
| 87 |
-
|
| 88 |
-
/* Slider styles */
|
| 89 |
-
.gr-slider input[type="range"] {
|
| 90 |
-
background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
|
| 91 |
-
height: 8px;
|
| 92 |
-
border-radius: 4px;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
/* File upload area */
|
| 96 |
-
.file-upload {
|
| 97 |
-
border: 3px dashed #667eea;
|
| 98 |
-
border-radius: 16px;
|
| 99 |
-
padding: 40px;
|
| 100 |
-
text-align: center;
|
| 101 |
-
transition: all 0.3s ease;
|
| 102 |
-
background: rgba(102, 126, 234, 0.02);
|
| 103 |
-
}
|
| 104 |
-
|
| 105 |
-
.file-upload:hover {
|
| 106 |
-
border-color: #764ba2;
|
| 107 |
-
background: rgba(102, 126, 234, 0.05);
|
| 108 |
-
transform: scale(1.01);
|
| 109 |
-
}
|
| 110 |
-
|
| 111 |
-
/* Checkbox styles */
|
| 112 |
-
input[type="checkbox"] {
|
| 113 |
-
width: 20px;
|
| 114 |
-
height: 20px;
|
| 115 |
-
margin-right: 10px;
|
| 116 |
-
cursor: pointer;
|
| 117 |
-
}
|
| 118 |
-
|
| 119 |
-
/* Tab styles */
|
| 120 |
-
.tabs {
|
| 121 |
-
border-radius: 12px;
|
| 122 |
-
overflow: hidden;
|
| 123 |
-
margin-bottom: 20px;
|
| 124 |
-
}
|
| 125 |
-
|
| 126 |
-
.tab-nav {
|
| 127 |
-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 128 |
-
padding: 5px;
|
| 129 |
-
}
|
| 130 |
-
|
| 131 |
-
.tab-nav button {
|
| 132 |
-
background: transparent;
|
| 133 |
-
color: white;
|
| 134 |
-
border: none;
|
| 135 |
-
padding: 10px 20px;
|
| 136 |
-
margin: 0 5px;
|
| 137 |
-
border-radius: 8px;
|
| 138 |
-
transition: all 0.3s ease;
|
| 139 |
-
}
|
| 140 |
-
|
| 141 |
-
.tab-nav button.selected {
|
| 142 |
-
background: white;
|
| 143 |
-
color: #667eea;
|
| 144 |
-
}
|
| 145 |
-
|
| 146 |
-
/* Section headers */
|
| 147 |
-
.section-header {
|
| 148 |
-
font-size: 20px;
|
| 149 |
-
font-weight: 600;
|
| 150 |
-
color: #667eea;
|
| 151 |
-
margin: 20px 0 15px 0;
|
| 152 |
-
padding-bottom: 10px;
|
| 153 |
-
border-bottom: 2px solid rgba(102, 126, 234, 0.2);
|
| 154 |
-
}
|
| 155 |
-
|
| 156 |
-
/* Status box styling */
|
| 157 |
-
.status-box {
|
| 158 |
-
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
|
| 159 |
-
border-radius: 12px;
|
| 160 |
-
padding: 20px;
|
| 161 |
-
}
|
| 162 |
-
|
| 163 |
-
/* Preview box styling */
|
| 164 |
-
.preview-box {
|
| 165 |
-
background: #f8f9fa;
|
| 166 |
-
border-radius: 12px;
|
| 167 |
-
padding: 20px;
|
| 168 |
-
font-family: 'Courier New', monospace;
|
| 169 |
-
font-size: 13px;
|
| 170 |
-
line-height: 1.5;
|
| 171 |
-
max-height: 500px;
|
| 172 |
-
overflow-y: auto;
|
| 173 |
-
}
|
| 174 |
-
|
| 175 |
-
/* Responsive design */
|
| 176 |
-
@media (max-width: 768px) {
|
| 177 |
-
.main-container {
|
| 178 |
-
padding: 15px;
|
| 179 |
-
margin: 10px;
|
| 180 |
-
}
|
| 181 |
-
|
| 182 |
-
.header-section h1 {
|
| 183 |
-
font-size: 2em;
|
| 184 |
-
}
|
| 185 |
-
|
| 186 |
-
.gr-tab-item {
|
| 187 |
-
padding: 10px 15px;
|
| 188 |
-
font-size: 1em;
|
| 189 |
-
}
|
| 190 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|