Farmbot-Web-App/webpack/css/labels.scss

34 lines
653 B
SCSS
Raw Normal View History

2017-06-29 12:54:02 -06:00
// Styles for LABELS
label {
2017-07-03 14:59:36 -06:00
color: $dark_gray;
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
&.day-label {
position: absolute;
text-align: center;
width: 10%;
margin-bottom: 0px;
line-height: 3rem;
border: solid $gray;
background: $white;
border-width: 1px 0.5px;
&.left-most {
border-left-width: 1px;
2017-06-29 12:54:02 -06:00
}
2017-07-03 14:59:36 -06:00
&.right-most {
border-right-width: 1px;
2017-06-29 12:54:02 -06:00
}
2017-07-03 14:59:36 -06:00
}
&.week-label {
width: 25%;
text-align: center;
vertical-align: middle;
margin-top: -1.75rem;
}
2017-06-29 12:54:02 -06:00
}
input[type=checkbox]:checked+label.day-label {
2017-07-03 14:59:36 -06:00
color: $off_white;
background: $dark_gray;
2017-06-29 12:54:02 -06:00
}