Шаблон:Cut-Layout/styles.css: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
Строка 17: Строка 17:
     align-items: center;
     align-items: center;
gap: 8px;
gap: 8px;
}
.cut-layout__header-arrow {
    font-size: 20px;
    font-weight: bold;
    line-height: 0;
}
}



Версия от 21:57, 15 апреля 2025

.cut-layout {
	display: flex;
	flex-direction: column;
    justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	box-shadow: var(--box-shadow-high);
	background-color: var(--bg-color); /* --bg-color из стилей шаблона; по умолчанию: var(--theme-bg-color-250) */
	border-radius: var(--border-radius-low);
    height: inherit;
    box-sizing: border-box;
}

.cut-layout__header {
	display: flex;
	justify-content: space-between;
    align-items: center;
	gap: 8px;
}

.cut-layout__header-arrow {
    font-size: 20px;
    font-weight: bold;
    line-height: 0;
}

.cut-layout__body {
	flex-grow: 100;
	padding: 8px;
	position: relative;
	font-size: 14px;
	overflow: auto;
	margin: 0 6px;
	background: rgba(var(--theme-color-darkened--rgb), var(--alpha-m));
	border-radius: var(--border-radius-low);
}