58 lines
938 B
CSS
58 lines
938 B
CSS
body {
|
|
background-color: #2C001E;
|
|
color: #E95420;
|
|
margin: 0;
|
|
font-family: 'Arial', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
padding: 20px;
|
|
overflow-y: auto;
|
|
max-height: calc(100vh - 70px);
|
|
}
|
|
|
|
.message {
|
|
border-left: 2px solid #E95420;
|
|
margin: 10px 0;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.nick {
|
|
color: #E95420;
|
|
}
|
|
|
|
#footer {
|
|
background: #2C001E;
|
|
padding: 10px;
|
|
}
|
|
|
|
/* Add Makima on the bottom left */
|
|
body::after {
|
|
content: "";
|
|
display: block;
|
|
position: fixed;
|
|
bottom: -125px;
|
|
left: 10px;
|
|
width: 200px;
|
|
background: url('/imgs/makima.svg') no-repeat;
|
|
background-size: contain;
|
|
background-position:bottom left;
|
|
z-index: 1;
|
|
height: 598px;
|
|
filter:opacity(75%);
|
|
}
|
|
|
|
/* Additional styles for a kawaii touch */
|
|
.message:hover {
|
|
background-color: #3E002A;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.message img {
|
|
max-width: 100%;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|