Spaces:
Paused
Paused
Update static/styles.css
Browse files- static/styles.css +12 -16
static/styles.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
body {
|
| 2 |
font-family: sans-serif;
|
| 3 |
-
background: #
|
| 4 |
padding: 20px;
|
| 5 |
}
|
| 6 |
|
| 7 |
-
#
|
| 8 |
-
max-width:
|
| 9 |
margin: auto;
|
| 10 |
background: white;
|
| 11 |
-
|
| 12 |
-
|
| 13 |
box-shadow: 0 0 10px #ccc;
|
| 14 |
}
|
| 15 |
|
|
@@ -17,31 +17,27 @@ body {
|
|
| 17 |
font-weight: bold;
|
| 18 |
text-align: center;
|
| 19 |
margin-bottom: 10px;
|
| 20 |
-
font-size: 1.2em;
|
| 21 |
}
|
| 22 |
|
| 23 |
#chat {
|
| 24 |
-
background: #f0f0f0;
|
| 25 |
-
padding: 10px;
|
| 26 |
-
overflow-y: auto;
|
| 27 |
height: 300px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
| 29 |
|
| 30 |
-
|
| 31 |
-
margin: 8px 0;
|
| 32 |
-
}
|
| 33 |
-
|
| 34 |
-
.me {
|
| 35 |
color: blue;
|
| 36 |
font-weight: bold;
|
| 37 |
}
|
| 38 |
|
| 39 |
-
.other {
|
| 40 |
color: green;
|
| 41 |
font-weight: bold;
|
| 42 |
}
|
| 43 |
|
| 44 |
-
.status {
|
| 45 |
color: gray;
|
| 46 |
font-style: italic;
|
| 47 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
font-family: sans-serif;
|
| 3 |
+
background: #f0f0f0;
|
| 4 |
padding: 20px;
|
| 5 |
}
|
| 6 |
|
| 7 |
+
#chatContainer {
|
| 8 |
+
max-width: 400px;
|
| 9 |
margin: auto;
|
| 10 |
background: white;
|
| 11 |
+
padding: 15px;
|
| 12 |
+
border-radius: 8px;
|
| 13 |
box-shadow: 0 0 10px #ccc;
|
| 14 |
}
|
| 15 |
|
|
|
|
| 17 |
font-weight: bold;
|
| 18 |
text-align: center;
|
| 19 |
margin-bottom: 10px;
|
|
|
|
| 20 |
}
|
| 21 |
|
| 22 |
#chat {
|
|
|
|
|
|
|
|
|
|
| 23 |
height: 300px;
|
| 24 |
+
overflow-y: auto;
|
| 25 |
+
border: 1px solid #333;
|
| 26 |
+
background: #f9f9f9;
|
| 27 |
+
padding: 10px;
|
| 28 |
}
|
| 29 |
|
| 30 |
+
#chat .me {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
color: blue;
|
| 32 |
font-weight: bold;
|
| 33 |
}
|
| 34 |
|
| 35 |
+
#chat .other {
|
| 36 |
color: green;
|
| 37 |
font-weight: bold;
|
| 38 |
}
|
| 39 |
|
| 40 |
+
#chat .status {
|
| 41 |
color: gray;
|
| 42 |
font-style: italic;
|
| 43 |
}
|