Template:FertilizerWindows/styles.css
Template page
More actions
/* =========================
Fertilizer Window Box
========================= */
.vp-fert-box {
border: 3px solid #3e7a3e;
background: #eef7ea;
border-radius: 10px;
padding: 10px;
margin: 1em 0;
}
/* Title pill */
.vp-fert-title {
display: inline-block;
background: var(--vp-journal-text);
color: #000;
padding: 3px 12px;
border: 2px solid #000;
border-radius: 4px;
box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
font-size: larger;
font-family: 'VPTIP';
margin-bottom: 6px;
}
/* Timeline container */
.vp-fert-timeline {
display: flex;
border: 2px solid #3e7a3e;
border-radius: 8px;
overflow: hidden;
}
/* Individual window */
.vp-fert-window {
flex: 1;
border-right: 2px solid #3e7a3e;
}
.vp-fert-window:last-child {
border-right: none;
}
/* Header row */
.vp-fert-header {
background: #cfe8c6;
font-weight: bold;
padding: 4px;
border-bottom: 2px solid #3e7a3e;
text-align: center;
}
/* Icon area */
.vp-fert-icons {
text-align: center;
padding: 6px;
}
/* Shadow ONLY behind icons */
.vp-fert-icons img {
filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.4));
}
/* Note */
.vp-fert-note {
margin-top: 0.4em;
font-size: 0.85em;
text-align: center;
font-family: 'VPTIP';
}
/* =========================
Mobile
========================= */
@media (max-width: 700px) {
.vp-fert-timeline {
flex-direction: column;
}
.vp-fert-window {
border-right: none;
border-bottom: 2px solid #3e7a3e;
}
.vp-fert-window:last-child {
border-bottom: none;
}
}