scratch-www/src/views/components/components.scss

129 lines
2.3 KiB
SCSS
Raw Normal View History

2016-05-11 18:44:35 -04:00
@import "../../colors";
.components {
h1 {
margin: 0 0 10px 0;
}
2016-05-11 18:44:35 -04:00
2021-03-30 10:53:06 -04:00
.subnavigation {
li {
background-color: $active-gray;
&.active {
background-color: $ui-blue;
}
2021-03-24 16:12:47 -04:00
}
}
2021-03-30 10:53:06 -04:00
.form {
width: 200px;
}
2016-05-11 18:44:35 -04:00
.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;
2016-05-11 18:44:35 -04:00
}
.splash-pink {
background-color: $ui-purple;
2016-05-11 18:44:35 -04:00
}
.splash-blue {
background-color: $ui-blue;
2016-05-11 18:44:35 -04:00
}
}
2015-09-06 19:18:53 -04:00
}