Template:Item/styles.css: Difference between revisions

From Love and Deepspace Wiki
Content added Content deleted
mNo edit summary
mNo edit summary
Line 6: Line 6:
border-radius: 5px;
border-radius: 5px;
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1);
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1);
font-size: 0.9em;
}
}


Line 11: Line 12:
display: flex;
display: flex;
gap: 0.5em;
gap: 0.5em;
font-size: 1.2em;
font-size: 1.1em;
}
}



Revision as of 18:14, 1 February 2024

.item-card {
    max-width: 400px;
    background: #eee;
    padding: 0.5em 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1);
    font-size: 0.9em;
}

.item-card-header {
	display: flex;
	gap: 0.5em;
	font-size: 1.1em;
}

.item-card-description {
	border-bottom: 1px solid #ccc;
}