Spaces:
Build error
Build error
Create static/styles.css
Browse files- static/styles.css +24 -0
static/styles.css
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# static/styles.css
|
| 2 |
+
/* Google Notebook LM style CSS */
|
| 3 |
+
.main {
|
| 4 |
+
max-width: 1200px;
|
| 5 |
+
margin: 0 auto;
|
| 6 |
+
padding: 2rem;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.stChatMessage {
|
| 10 |
+
background-color: white;
|
| 11 |
+
border-radius: 8px;
|
| 12 |
+
padding: 1rem;
|
| 13 |
+
margin: 1rem 0;
|
| 14 |
+
box-shadow: 0 1px 3px rgba(0,0,0,0.12);
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.stTextArea {
|
| 18 |
+
border: 1px solid #e0e0e0;
|
| 19 |
+
border-radius: 8px;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.stButton>button {
|
| 23 |
+
border-radius: 20px;
|
| 24 |
+
}
|