Toggle menu
Toggle preferences menu
Toggle personal menu
Nejste přihlášen(a)
Your IP address will be publicly visible if you make any edits.

Šablona:Infobox/styl.css

Z Draconia RP Wiki
Verze z 15. 7. 2026, 17:48, kterou vytvořil Draconia (diskuse | příspěvky) (infobox styles)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
.infobox {
	float: right;
	clear: right;
	width: 300px;
	margin: 0 0 var( --space-md ) var( --space-md );
	padding: var( --space-md );
	border: 1px solid var( --border-color-base );
	background: var( --color-surface-1 );
	border-radius: var( --border-radius-medium );
	font-size: var( --font-size-small );
}

.infobox__title {
	margin-bottom: var( --space-xs );
	font-family: var( --tg-font-family-heading );
	font-size: var( --font-size-x-large );
	font-weight: 600;
	color: var( --color-primary );
	text-align: center;
}

.infobox__image {
	margin-bottom: var( --space-xs );
	text-align: center;
}

.infobox__image img {
	max-width: 100%;
	border-radius: var( --border-radius-medium );
}

.infobox__rows {
	display: flex;
	flex-direction: column;
	gap: var( --space-xs );
}

.infobox__row {
	padding-top: var( --space-xs );
	border-top: 1px solid var( --border-color-subtle );
}

.infobox__row:first-child {
	padding-top: 0;
	border-top: 0;
}

.infobox__label {
	color: var( --color-subtle );
	font-size: var( --font-size-x-small );
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.infobox__value {
	color: var( --color-emphasized );
	line-height: var( --line-height-xx-small );
}

@media only screen and (max-width: 600px) {
	.infobox {
		float: none;
		width: 100%;
		margin-left: 0;
	}
}