Module:Portal/styles.css: Difference between revisions

Safer nicotine wiki Tobacco Harm Reduction
Jump to navigation Jump to search
add some ws
 
imported>Hike395
set min height of row to avoid bunching
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* {{pp-template}} */
/* {{pp-template}} */
.portal {
.portalbox {
border: solid #aaa 1px;
padding: 0; /* Timeless adds padding */
padding: 0; /* Timeless adds padding */
margin: 0.5em 0;
display: table;
box-sizing: border-box;
max-width: 175px;
list-style: none;
}
}


.portal.tleft {
.portalborder {
margin: 0.5em 1em 0.5em 0
border: solid #aaa 1px;
padding: 0.1em;
background: #f9f9f9;
}
}


.portal.tright {
.portalbox-entry {
margin: 0.5em 0 0.5em 1em
display: table-row;
}
 
.portal > ul {
display: table;
box-sizing: border-box;
padding: 0.1em;
max-width: 175px;
background: #f9f9f9;
font-size: 85%;
font-size: 85%;
line-height: 110%;
line-height: 110%;
height: 1.9em; /* sets min height */
font-style: italic;
font-style: italic;
font-weight: bold;
font-weight: bold;
}
}


.portal > ul > li {
.portalbox-image {
display: table-row;
}
.portal > ul > li > span:first-child {
display: table-cell;
display: table-cell;
padding: 0.2em;
padding: 0.2em;
Line 35: Line 31:
}
}


.portal > ul > li > span:last-child {
.portalbox-link {
display: table-cell;
display: table-cell;
padding: 0.2em 0.2em 0.2em 0.3em;
padding: 0.2em 0.2em 0.2em 0.3em;
vertical-align: middle;
vertical-align: middle;
}
@media (min-width: 720px) {
.portalleft {
clear: left;
float: left;
margin: 0.5em 1em 0.5em 0
}
.portalright {
clear: right;
float: right;
margin: 0.5em 0 0.5em 1em
}
}
}

Latest revision as of 12:46, 11 January 2023

/* {{pp-template}} */
.portalbox {
	padding: 0; /* Timeless adds padding */
	margin: 0.5em 0;
	display: table;
	box-sizing: border-box;
	max-width: 175px;
	list-style: none;
}

.portalborder {
	border: solid #aaa 1px;
	padding: 0.1em;
	background: #f9f9f9;
}

.portalbox-entry {
	display: table-row;
	font-size: 85%;
	line-height: 110%;
	height: 1.9em; /* sets min height */
	font-style: italic;
	font-weight: bold;
}

.portalbox-image {
	display: table-cell;
	padding: 0.2em;
	vertical-align: middle;
	text-align: center;
}

.portalbox-link {
	display: table-cell;
	padding: 0.2em 0.2em 0.2em 0.3em;
	vertical-align: middle;
}

@media (min-width: 720px) {
	.portalleft {
		clear: left;
		float: left;
		margin: 0.5em 1em 0.5em 0
	}
	
	.portalright {
		clear: right;
		float: right;
		margin: 0.5em 0 0.5em 1em
	}
}