Шаблон:Cut-Layout/styles.css

Материал из Space Station 14 Вики
Версия от 05:44, 15 апреля 2025; Pok (обсуждение | вклад) (Новая страница: «.cut-layout { display: flex; flex-direction: column; margin: 3px; padding: 10px 18px; box-shadow: var(--box-shadow-high); background: var(--theme-bg-color-250); border-radius: var(--border-radius-low); width: 33%; gap: 8px; } .cut-layout__header { text-align: left; } .cut-layout__header p { margin: 0; } .cut-layout__body { flex-grow: 100; padding: 8px; position: relative; font-size: 14px; overflow: au...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)
.cut-layout {
	display: flex;
    flex-direction: column;
    margin: 3px;
    padding: 10px 18px;
    box-shadow: var(--box-shadow-high);
    background: var(--theme-bg-color-250);
    border-radius: var(--border-radius-low);
    width: 33%;
    gap: 8px;
}

.cut-layout__header {
	text-align: left;
}

.cut-layout__header p {
	margin: 0;
}

.cut-layout__body {
    flex-grow: 100;
    padding: 8px;
    position: relative;
    font-size: 14px;
    overflow: auto;
    margin: 0 8px;
    background: var(--theme-bg-color-200);
    border-radius: var(--border-radius-low);
}