Upload styles.css
Browse files- static/styles.css +73 -0
static/styles.css
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
background-color: #f2f2f2;
|
| 4 |
+
margin: 0;
|
| 5 |
+
padding: 20px;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.container {
|
| 9 |
+
max-width: 800px;
|
| 10 |
+
margin: auto;
|
| 11 |
+
background-color: #fff;
|
| 12 |
+
padding: 20px;
|
| 13 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
header {
|
| 17 |
+
margin-bottom: 20px;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
header nav a {
|
| 21 |
+
margin-right: 10px;
|
| 22 |
+
text-decoration: none;
|
| 23 |
+
color: #007BFF;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.flashes {
|
| 27 |
+
list-style: none;
|
| 28 |
+
padding: 0;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.flash {
|
| 32 |
+
padding: 10px;
|
| 33 |
+
margin-bottom: 10px;
|
| 34 |
+
border-radius: 4px;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.flash.error {
|
| 38 |
+
background-color: #f8d7da;
|
| 39 |
+
color: #721c24;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.flash.success {
|
| 43 |
+
background-color: #d4edda;
|
| 44 |
+
color: #155724;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.thread-list, .message-list {
|
| 48 |
+
list-style: none;
|
| 49 |
+
padding: 0;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.thread-list li, .message-list li {
|
| 53 |
+
padding: 10px;
|
| 54 |
+
border-bottom: 1px solid #ddd;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
.message {
|
| 58 |
+
padding: 10px;
|
| 59 |
+
background-color: #fafafa;
|
| 60 |
+
border: 1px solid #ddd;
|
| 61 |
+
border-radius: 4px;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.message-actions form, .message-actions button {
|
| 65 |
+
display: inline;
|
| 66 |
+
margin-right: 5px;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
#preview-area {
|
| 70 |
+
border: 1px dashed #aaa;
|
| 71 |
+
padding: 10px;
|
| 72 |
+
margin-top: 10px;
|
| 73 |
+
}
|