discourse/plugins/styleguide/assets/stylesheets/styleguide.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

170 lines
2.8 KiB
SCSS
Raw Normal View History

@import "colors";
@import "typography";
.styleguide {
display: flex;
.styleguide-note {
padding: 1em;
background-color: var(--tertiary, $tertiary);
margin-bottom: 1em;
}
.styleguide-menu {
margin-top: 1em;
flex: 1 0 0;
ul {
list-style: none;
margin-bottom: 1.5em;
margin-left: 0;
li.styleguide-heading {
color: var(--primary-medium, $primary-medium);
text-transform: uppercase;
font-size: 14px;
}
li {
margin-bottom: 0.25em;
a {
color: var(--primary, $primary);
font-size: 14px;
}
a.active {
font-weight: bold;
}
}
}
}
.styleguide-contents {
flex: 4 0 0;
font-size: 14px;
}
.styleguide-section {
.section-title {
font-size: $font-up-5;
font-weight: normal;
margin-bottom: 0.5em;
}
.section-description {
margin-bottom: 2em;
}
.description {
margin: 1em 0;
}
.half-size {
width: 50%;
}
.styleguide-example {
.example-title {
color: var(--primary-medium, $primary-medium);
font-size: $font-0;
border-bottom: 1px solid var(--primary-low, $primary-low);
margin-bottom: 1em;
}
.rendered {
width: 100%;
}
margin-bottom: 2em;
}
}
.color-row {
display: flex;
.color-example {
flex: 1;
display: flex;
flex-direction: column;
height: 120px;
margin: 0.5em 0.5em 0.5em 0;
.color-bg {
flex: 4;
}
.color-name {
flex: 1;
display: flex;
align-items: center;
padding: 0.25em 0.5em;
background-color: black;
color: white;
}
}
}
pre {
background: var(--primary-very-low, $primary-very-low);
white-space: pre-wrap;
&.pre-inline {
display: inline-block;
margin: 0;
vertical-align: bottom;
}
span {
color: var(--primary-medium, $primary-medium);
&.hljs-attribute {
color: teal;
}
}
}
p.reason {
display: inline;
color: var(--primary-medium, $primary-medium);
margin: 0 0 0 10px;
}
}
.buttons-examples {
button {
margin-right: 0.5em;
margin-bottom: 0.5em;
}
}
.icons-examples,
.topic-statuses-examples .d-icon {
margin-right: 0.5em;
margin-bottom: 0.5em;
}
.dropdowns-examples {
.select-kit.is-hidden {
display: inline-block;
}
}
.styleguide-icons {
display: grid;
grid-template-columns: 150px 150px 150px 150px 150px;
grid-gap: 10px;
.styleguide-icon {
background-color: var(--primary-low, $primary-low);
margin: 3px;
text-align: center;
padding: 10px;
overflow: hidden;
svg {
display: block;
font-size: 3em;
margin: 5px auto;
}
span {
font-size: $font-down-1;
}
}
}