ShadowfangV1 / style.css
Dalladrain's picture
Update style.css
8b80552 verified
raw
history blame contribute delete
812 Bytes
.comic-panel {
border: 4px solid #000;
background: linear-gradient(145deg,#fff7eb,#ffe4c4);
position: relative;
padding: 8px;
border-radius: 8px;
box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}
.comic-img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 6px;
border: 2px solid #333;
}
.speech-bubble {
position: absolute;
top: 20px;
left: 20px;
background: #ffff99;
border: 2px solid #ff0000;
border-radius: 16px;
padding: 6px 10px;
font-size: 14px;
max-width: 80%;
cursor: move;
color: #000;
font-weight: bold;
text-shadow: 1px 1px #fff;
}
.caption {
position: absolute;
bottom: 5px;
left: 5px;
right: 5px;
background: rgba(255,255,255,0.8);
border: 2px solid black;
font-size: 12px;
padding: 4px;
font-weight: bold;
color: #333;
}