scratch-www/src/views/components/components.scss
Eric Rosenbaum 2ff5e8d8fb styling
2021-03-30 10:53:06 -04:00

128 lines
2.3 KiB
SCSS

@import "../../colors";
.components {
h1 {
margin: 0 0 10px 0;
}
.subnavigation {
li {
background-color: $active-gray;
&.active {
background-color: $ui-blue;
}
}
}
.form {
width: 200px;
}
.colors {
span {
display: inline-block;
width: 200px;
text-align: center;
line-height: 200px;
font-weight: bold;
}
.ui-blue,
.ui-orange,
.ui-dark-gray,
.ui-purple,
.overlay-gray,
.header-gray,
.type-gray,
.link-blue,
.splash-green,
.splash-pink,
.splash-blue {
color: $ui-white;
}
.ui-blue {
background-color: $ui-blue;
}
.ui-orange {
background-color: $ui-orange;
}
.ui-light-gray {
background-color: $ui-light-gray;
}
.ui-gray {
background-color: $ui-gray;
}
.ui-dark-gray {
background-color: $ui-dark-gray;
}
.background-color {
background-color: $background-color;
}
.ui-aqua {
background-color: $ui-aqua;
}
.ui-purple {
background-color: $ui-purple;
}
.ui-white {
background-color: $ui-white;
}
.ui-border {
background-color: $ui-border;
}
.active-gray {
background-color: $active-gray;
}
.active-dark-gray {
background-color: $active-dark-gray;
}
.box-shadow-gray {
background-color: $box-shadow-gray;
}
.overlay-gray {
background-color: $overlay-gray;
}
.header-gray {
background-color: $header-gray;
}
.type-gray {
background-color: $type-gray;
}
.type-white {
background-color: $type-white;
}
.link-blue {
background-color: $link-blue;
}
.splash-green {
background-color: $ui-aqua;
}
.splash-pink {
background-color: $ui-purple;
}
.splash-blue {
background-color: $ui-blue;
}
}
}