humanda5
Complete: Personality λ³€ν™” 섀계 고도화
3eb99bc
raw
history blame contribute delete
691 Bytes
/* 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;
}