Update gradio_app/static/styles.css
Browse files- gradio_app/static/styles.css +29 -34
gradio_app/static/styles.css
CHANGED
|
@@ -19,61 +19,56 @@
|
|
| 19 |
animation: fadeIn 0.8s ease-in-out;
|
| 20 |
margin: 0 auto;
|
| 21 |
}
|
| 22 |
-
/* .intro-container {
|
| 23 |
-
max-width: 800px;
|
| 24 |
-
padding: 40px;
|
| 25 |
-
background: #ffffff;
|
| 26 |
-
border-radius: 15px;
|
| 27 |
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
| 28 |
-
text-align: center;
|
| 29 |
-
animation: fadeIn 1s ease-in-out;
|
| 30 |
-
} */
|
| 31 |
h1 {
|
| 32 |
-
font-size: 2.
|
| 33 |
-
color: #
|
| 34 |
-
|
| 35 |
-
letter-spacing:
|
| 36 |
-
margin-bottom:
|
| 37 |
}
|
|
|
|
| 38 |
h2 {
|
| 39 |
-
font-size:
|
| 40 |
-
color: #
|
| 41 |
-
|
|
|
|
| 42 |
}
|
| 43 |
|
| 44 |
.intro-icon {
|
| 45 |
-
font-size: 1.
|
|
|
|
| 46 |
}
|
| 47 |
|
| 48 |
.intro-highlight {
|
| 49 |
-
font-size: 1.
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
border-radius:
|
| 53 |
-
margin-bottom:
|
| 54 |
-
border-left: 4px solid #
|
| 55 |
}
|
| 56 |
|
| 57 |
.intro-disclaimer {
|
| 58 |
-
font-size:
|
| 59 |
-
background-color:
|
| 60 |
-
padding:
|
| 61 |
-
border-radius:
|
| 62 |
-
margin-bottom:
|
| 63 |
-
border-left: 4px solid #
|
| 64 |
}
|
| 65 |
|
| 66 |
.intro-purpose {
|
| 67 |
-
color: #
|
| 68 |
}
|
| 69 |
|
| 70 |
.intro-alert {
|
| 71 |
-
color: #
|
| 72 |
-
font-size: 1.
|
|
|
|
| 73 |
}
|
| 74 |
|
| 75 |
@keyframes fadeIn {
|
| 76 |
-
0% { opacity: 0; transform: translateY(-
|
| 77 |
100% { opacity: 1; transform: translateY(0); }
|
| 78 |
}
|
| 79 |
|
|
|
|
| 19 |
animation: fadeIn 0.8s ease-in-out;
|
| 20 |
margin: 0 auto;
|
| 21 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
h1 {
|
| 23 |
+
font-size: 2.2em;
|
| 24 |
+
color: #005566;
|
| 25 |
+
font-weight: 700;
|
| 26 |
+
letter-spacing: 0.5px;
|
| 27 |
+
margin-bottom: 15px;
|
| 28 |
}
|
| 29 |
+
|
| 30 |
h2 {
|
| 31 |
+
font-size: 1.6em;
|
| 32 |
+
color: #34495e;
|
| 33 |
+
font-weight: 500;
|
| 34 |
+
margin-bottom: 20px;
|
| 35 |
}
|
| 36 |
|
| 37 |
.intro-icon {
|
| 38 |
+
font-size: 1.1em;
|
| 39 |
+
margin-right: 5px;
|
| 40 |
}
|
| 41 |
|
| 42 |
.intro-highlight {
|
| 43 |
+
font-size: 1.1em;
|
| 44 |
+
background-color: rgba(230, 243, 255, 0.9);
|
| 45 |
+
padding: 12px;
|
| 46 |
+
border-radius: 6px;
|
| 47 |
+
margin-bottom: 15px;
|
| 48 |
+
border-left: 4px solid #1e90ff;
|
| 49 |
}
|
| 50 |
|
| 51 |
.intro-disclaimer {
|
| 52 |
+
font-size: 1em;
|
| 53 |
+
background-color: rgba(255, 248, 225, 0.9);
|
| 54 |
+
padding: 12px;
|
| 55 |
+
border-radius: 6px;
|
| 56 |
+
margin-bottom: 15px;
|
| 57 |
+
border-left: 4px solid #ffb300;
|
| 58 |
}
|
| 59 |
|
| 60 |
.intro-purpose {
|
| 61 |
+
color: #5d6d7e;
|
| 62 |
}
|
| 63 |
|
| 64 |
.intro-alert {
|
| 65 |
+
color: #d32f2f;
|
| 66 |
+
font-size: 1.2em;
|
| 67 |
+
font-weight: 600;
|
| 68 |
}
|
| 69 |
|
| 70 |
@keyframes fadeIn {
|
| 71 |
+
0% { opacity: 0; transform: translateY(-15px); }
|
| 72 |
100% { opacity: 1; transform: translateY(0); }
|
| 73 |
}
|
| 74 |
|