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

From Love and Deepspace Wiki
Content added Content deleted
mNo edit summary
No edit summary
 
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;
}
}


.header-tab-button {
.header-tab-button {
background: #ccc;
border: 1px solid black;
width: 100px;
width: 100px;
padding: .25em;
padding: .25em;
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;
}