Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.
Revision as of 17:56, May 20, 2025 by LordSkorne7 (talk | contribs) (Created page with "=============================: Project Board CSS: =============================: .amaranth-columns-container { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 1em; padding: 1em; background: #0e0e0e; border-radius: 10px; text-align: left; } COLUMN STYLING: .amaranth-column { min-width: 250px; background: #111; padding: 1em; border-radius: 10px; border: 2px solid #2f2f2f; flex-shrink: 0; } HEADER: .amaranth-c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* ============================= */
/* Project Board CSS             */
/* ============================= */

.amaranth-columns-container {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 1em;
	padding: 1em;
	background: #0e0e0e;
	border-radius: 10px;
	text-align: left;
}



/* COLUMN STYLING */
.amaranth-column {
	min-width: 250px;
	background: #111;
	padding: 1em;
	border-radius: 10px;
	border: 2px solid #2f2f2f;
	flex-shrink: 0;
}

/* HEADER */
.amaranth-column-header {
	color: #fff;
	font-family: 'Cinzel', serif;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 0.5em;
	display: block;
}

/* CARDS */
.amaranth-card {
	display: block;
	background-color: #1c070f;
	color: #fff;
	padding: 0.8em;
	border-radius: 10px;
	margin-bottom: 1em;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.amaranth-card-title {
	font-weight: bold;
	display: block;
}

.amaranth-card-subtitle {
	font-size: 0.9em;
	margin-top: 0.5em;
	display: block;
}

.amaranth-card-body,
.amaranth-card-tags {
	font-size: 0.85em;
	margin-top: 0.5em;
	display: block;
}