Create custom.css
Browse files- custom.css +37 -0
custom.css
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body>gradio-app {
|
| 2 |
+
background: var(--primary-950);
|
| 3 |
+
background: linear-gradient(180deg, color-mix(in srgb, var(--primary-950), transparent 50%) 0%, color-mix(in srgb, var(--primary-950), transparent 50%) 28%, var(--neutral-950) 28%, var(--neutral-950) 100%) !important;
|
| 4 |
+
padding-top: 120px;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
div.tabs>div.tab-nav {
|
| 9 |
+
border-bottom: none;
|
| 10 |
+
!important;
|
| 11 |
+
padding: 0 0.25rem 0 0.25rem !important;
|
| 12 |
+
flex-wrap: nowrap;
|
| 13 |
+
overflow-x: scroll;
|
| 14 |
+
overflow-y: hidden;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
div.tabs>div.tab-nav>button.selected {
|
| 18 |
+
border-width: 0 !important;
|
| 19 |
+
background: var(--primary-600) !important;
|
| 20 |
+
color: var(--neutral-950);
|
| 21 |
+
font-weight: 600;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
div.tabs>div.tab-nav>button {
|
| 25 |
+
min-width: 140px !important;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
div.tabs div.tabitem {
|
| 29 |
+
background-color: var(--neutral-900) !important;
|
| 30 |
+
border-top: 8px solid var(--primary-600) !important;
|
| 31 |
+
border-radius: var(--container-radius) !important;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.top-description h1 {
|
| 35 |
+
color: var(--neutral-400);
|
| 36 |
+
font-size: 2rem;
|
| 37 |
+
}
|