Шаблон:ModernFrame/styles.css
Материал из Space Station 14 Вики
.modern-frame {
--c-m-bg: color-mix(in srgb, var(--bg-color) var(--alpha), rgb(var(--theme-color-darkened--rgb)));
--c-m-border: color-mix(in srgb, var(--bg-color) 80%, transparent);
background: var(--bg-color);
display: flex;
flex-direction: column;
border-radius: 0.3em;
}
.modern-frame__title {
position: relative;
display: flex;
align-items: center;
min-height: 32px;
padding: 2px 8px;
color: #e5e5e5;
font-size: 15px;
font-family: "Noto Sans", sans-serif;
border-radius: 0.3em 0.3em 0 0;
border-top: 2px solid rgba(var(--color-lighter--rgb), var(--alpha-x));
border-bottom: 3px solid var(--color-darkened-border);
}
.modern-frame__content {
border-radius: 0 0 0.3em 0.3em;
box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
border: 2px solid var(--c-m-border);
background: var(--c-m-bg);
}