Create static/css/styles.css
Browse files- static/css/styles.css +52 -0
static/css/styles.css
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background: #87CEEB; /* Krishna blue */
|
| 3 |
+
font-family: 'Bubblegum Sans', cursive;
|
| 4 |
+
color: #000;
|
| 5 |
+
text-align: center;
|
| 6 |
+
}
|
| 7 |
+
h1 {
|
| 8 |
+
color: #FFD700; /* Butter yellow */
|
| 9 |
+
}
|
| 10 |
+
nav {
|
| 11 |
+
background: #FFD700;
|
| 12 |
+
padding: 10px;
|
| 13 |
+
}
|
| 14 |
+
nav a {
|
| 15 |
+
margin: 0 15px;
|
| 16 |
+
color: #000;
|
| 17 |
+
text-decoration: none;
|
| 18 |
+
}
|
| 19 |
+
#chat-container {
|
| 20 |
+
width: 80%;
|
| 21 |
+
margin: 20px auto;
|
| 22 |
+
border: 2px solid #FFD700;
|
| 23 |
+
padding: 20px;
|
| 24 |
+
background: #fff;
|
| 25 |
+
}
|
| 26 |
+
#chat-messages {
|
| 27 |
+
height: 300px;
|
| 28 |
+
overflow-y: scroll;
|
| 29 |
+
margin-bottom: 20px;
|
| 30 |
+
border: 1px solid #ccc;
|
| 31 |
+
padding: 10px;
|
| 32 |
+
}
|
| 33 |
+
#chat-form {
|
| 34 |
+
display: flex;
|
| 35 |
+
justify-content: center;
|
| 36 |
+
}
|
| 37 |
+
#message-input {
|
| 38 |
+
width: 70%;
|
| 39 |
+
padding: 10px;
|
| 40 |
+
font-family: 'Bubblegum Sans', cursive;
|
| 41 |
+
}
|
| 42 |
+
button {
|
| 43 |
+
padding: 10px 20px;
|
| 44 |
+
background: #FFD700;
|
| 45 |
+
border: none;
|
| 46 |
+
cursor: pointer;
|
| 47 |
+
}
|
| 48 |
+
#comic-strip {
|
| 49 |
+
display: flex;
|
| 50 |
+
flex-wrap: wrap;
|
| 51 |
+
justify-content: center;
|
| 52 |
+
}
|