Template:Cobwatch/styles.css
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
/* Container shapes the cigar and provides cylindrical shading and leaf texture */
.cobwatch-cigar {
display: flex;
align-items: stretch;
max-width: 750px;
margin: 1em auto;
background:
repeating-linear-gradient(25deg, transparent, transparent 40px, rgba(0,0,0,0.2) 42px, transparent 43px),
linear-gradient(to bottom, #2b160a 0%, #4a2613 25%, #593019 50%, #30170a 80%, #1a0c05 100%);
border-radius: 60px 8px 8px 60px;
border: 1px solid #111;
box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 3px 6px rgba(255,255,255,0.05);
color: #ffdf00; /* Gold text */
font-family: "Times New Roman", serif;
overflow: hidden; /* Clips the band and inner elements to the rounded border */
}
/* Neutralize MediaWiki's automatic paragraph and break tags inside flexbox */
.cobwatch-cigar p {
display: contents;
margin: 0;
}
.cobwatch-cigar br {
display: none;
}
/* The rounded mouth-piece (Cap) */
.cobwatch-cap {
width: 30px;
background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%);
}
/* The Cigar Band (Holds the Image) */
.cobwatch-band {
background: linear-gradient(to bottom, #111 0%, #222 15%, #000 20%, #d4af37 20%, #fff080 50%, #aa8000 80%, #000 80%, #222 85%, #111 100%);
border-left: 2px solid #6b5400;
border-right: 2px solid #6b5400;
padding: 10px 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 5px 0 15px rgba(0,0,0,0.5), -5px 0 15px rgba(0,0,0,0.5);
z-index: 2;
}
/* Strip native borders off the image wrapper */
.cobwatch-band a.image {
border: 2px solid #111;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0,0,0,0.5);
display: block;
line-height: 0;
}
/* Main content area */
.cobwatch-body {
flex: 1;
padding: 15px 20px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.cobwatch-title {
font-size: 1.8em;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
margin-bottom: 5px;
}
.cobwatch-audio {
margin: 5px 0;
}
.cobwatch-subtitle {
font-size: 1.1em;
font-style: italic;
color: #ffca28;
}
/* The lit end / ash */
.cobwatch-foot {
width: 15px;
background: linear-gradient(to right, #ff4500 0%, #888 40%, #333 100%);
box-shadow: -4px 0 12px rgba(255, 69, 0, 0.8);
}
/* Mobile adjustments */
@media (max-width: 600px) {
.cobwatch-cigar {
flex-direction: column;
border-radius: 20px 20px 10px 10px;
}
.cobwatch-cap, .cobwatch-foot {
display: none;
}
.cobwatch-band {
border-left: none; border-right: none;
border-top: 2px solid #6b5400; border-bottom: 2px solid #6b5400;
background: linear-gradient(to right, #111 0%, #000 20%, #d4af37 20%, #fff080 50%, #aa8000 80%, #000 80%, #111 100%);
}
}