61 lines
1.2 KiB
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;
2018-09-10 20:59:33 +03:00
font-family: 'Lato', sans-serif;
2017-08-08 18:12:23 +02:00
2017-07-19 16:02:34 +02:00
> label {
text-transform: capitalize;
2017-08-08 18:12:23 +02:00
margin-bottom: .8rem;
2017-08-09 19:47:39 +02:00
font-weight: 500;
2017-07-27 16:07:09 +02:00
}
> select {
2017-08-08 18:12:23 +02:00
font-size: 1.3rem;
2018-09-10 20:59:33 +03:00
font-family: 'Lato', sans-serif;
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-08-09 19:47:39 +02:00
border: 1px solid #E3E9F3;
padding-left: 1rem;
2017-07-19 16:02:34 +02:00
}
}
2017-08-09 09:52:00 +02:00
.requiredClass {
> label:after {
color: red;
2018-09-10 20:59:33 +03:00
font-family: 'Lato', sans-serif;
2017-08-09 09:52:00 +02:00
font-weight: bold;
margin-left: 5px;
content: "*";
}
}
.input {
margin-bottom: 1.5rem;
font-size: 1.3rem;
2018-09-10 20:59:33 +03:00
font-family: 'Lato', sans-serif;
-webkit-font-smoothing: antialiased;
> label {
margin-bottom: 0;
font-weight: 500;
text-transform: capitalize;
}
> select {
margin-top: .9rem;
padding-top: 0rem;
padding-left: 1rem;
height: 3.4rem !important;
line-height: 3.2rem;
border: 1px solid #E3E9F3;
border-radius: 0.25rem;
-moz-appearance: none;
-webkit-appearance: none;
font-size: 1.3rem;
2018-09-10 20:59:33 +03:00
font-family: 'Lato', sans-serif !important;
background-position: right -1px center;
background-repeat: no-repeat;
background-image: url('../../assets/images/background_input.svg');
}
}