27 lines
450 B
SCSS
Raw Normal View History

2017-07-19 16:02:34 +02:00
.inputSelect { /* stylelint-disable */
2017-08-08 18:12:23 +02:00
font-size: 1.3rem;
font-family: Lato;
2017-07-19 16:02:34 +02:00
> label {
text-transform: capitalize;
2017-08-08 18:12:23 +02:00
margin-bottom: .8rem;
2017-07-27 16:07:09 +02:00
}
> select {
2017-08-08 18:12:23 +02:00
font-size: 1.3rem;
font-family: Lato;
2017-07-27 16:07:09 +02:00
color: #333740;
2017-08-08 18:12:23 +02:00
height: 3.5rem!important;
border-radius: 0rem!important;
2017-07-19 16:02:34 +02:00
}
}
2017-08-09 09:52:00 +02:00
.requiredClass {
> label:after {
color: red;
font-family: Lato;
font-weight: bold;
margin-left: 5px;
content: "*";
}
}