Spaces:
Sleeping
Sleeping
File size: 691 Bytes
3eb99bc 082f464 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
/* portfolio/npc_social_network/static/css/style.css */
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f4f4f4;
padding: 20px;
}
.chat-container {
max-width: 800px;
margin: auto;
background: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px #ccc;
}
#chatBox {
height: 400px;
overflow-y: auto;
border: 1px solid #ddd;
padding: 10px;
margin-bottom: 20px;
background-color: #fafafa;
white-space: pre-wrap;
}
.chat-message {
margin-bottom: 10px;
}
.user {
font-weight: bold;
color: #0074D9;
}
.npc {
font-weight: bold;
color: #FF851B;
}
.meta-info {
margin-bottom: 15px;
} |