Template:Header tabs memory/styles.css: Difference between revisions

From Love and Deepspace Wiki
Content added Content deleted
(Created page with ".header-tab-button-container { display: inline-block; text-align: center; margin: auto; } .header-tab-button { width: 100px; padding: .25em; text-align: center; margin: 4px; }")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
.header-tab-button-container {
.header-tab-button-container {
display: inline-block;
display: flex;
text-align: center;
justify-content: center;
margin: auto;
}
}


Line 10: Line 9:
text-align: center;
text-align: center;
margin: 4px;
margin: 4px;
background: #eee;
border: 1px solid #ccc;
border-radius: 5px;
}

.header-tab-selected {
background: lightblue;
border: 2px solid skyblue;
}
}

Latest revision as of 02:44, 31 January 2024

.header-tab-button-container {
	display: flex;
	justify-content: center;
}

.header-tab-button {
	width: 100px;
	padding: .25em;
	text-align: center;
	margin: 4px;
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.header-tab-selected {
	background: lightblue;
	border: 2px solid skyblue;
}