MediaWiki:Common.css/src/template/float file box.scss

From Terraria Wiki
Jump to navigation Jump to search
/********* [[Template:Float file box]] *********/

.floatfilebox {
	/* infobox-like styling */
	border: 1px solid var(--theme-box-border-color);
	border-radius: 8px;
	padding: 6px;
	font-size: 12px;
	background-color: var(--theme-box-background);
	line-height: 1.5;
	text-align: center;
	width: 150px;
	margin: 0.5em 1em 0.5em 0;

	&.float-right {
		float: right;
		margin-right: 0;
		margin-left: 1em;
	}
	&.float-left {
		float: left;
	}
	&.float-none {
		float: none;
	}

	> div {
		/* row elements */
		padding: 3px 4px;

		&.title {
			/* "title" row elements */
			background-color: var(--theme-highlight-background);
			font-weight: bold;
			margin-bottom: 0.5em;
			padding-top: 5px;
			padding-bottom: 5px;

			&:not(:first-child) {
				/* space above "title" rows, but not if the "title" row is the very first row */
				margin-top: 0.5em;
			}
		}
	}

	& > &-even + div {
		/* little bit of space after every 2 rows */
		margin-top: 0.5em;
	}
}