You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
2.1 KiB
127 lines
2.1 KiB
|
|
.button,
|
|
input,
|
|
select,
|
|
button,
|
|
textarea{
|
|
border-radius: 3px;
|
|
margin: 5px 0;
|
|
-webkit-appearance: none;
|
|
&::-ms-clear {
|
|
display: none;
|
|
}
|
|
&:focus {outline:none;}
|
|
&::-moz-focus-inner {border:0;}
|
|
|
|
outline: none !important;
|
|
}
|
|
|
|
input[type=text],
|
|
input[type=password],
|
|
select,
|
|
textarea{
|
|
border: 1px solid $grey;
|
|
color: $dark-grey;
|
|
padding: 5px 10px;
|
|
width: 100%;
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
background: white;
|
|
|
|
&:disabled{
|
|
color: $grey;
|
|
background-color: $lighter-grey;
|
|
}
|
|
}
|
|
|
|
.button,
|
|
input[type=button],
|
|
input[type=submit],
|
|
button{
|
|
display: inline-block;
|
|
background-color: $green;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 5px 20px;
|
|
font-size: $font-12;
|
|
line-height: 23px;
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: .5s;
|
|
|
|
&:disabled{
|
|
color: white;
|
|
background-color: $grey;
|
|
}
|
|
|
|
&:hover{
|
|
opacity: .7;
|
|
color: white;
|
|
}
|
|
|
|
&.button-small{
|
|
padding: 3px 20px;
|
|
line-height: unset;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
select{
|
|
appearance: none;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
background-image: url(../images/angle-down.png);
|
|
background-position: right 5px center;
|
|
background-size: 20px;
|
|
background-repeat: no-repeat;
|
|
padding-right: 30px;
|
|
}
|
|
|
|
|
|
input[type="radio"],
|
|
input[type="checkbox"]{
|
|
display: none;
|
|
|
|
&+label::before {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
border: solid 1px $grey;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
margin: -4px 4px 0 0;
|
|
font-size: 1rem;
|
|
line-height: 14px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
&:checked{
|
|
&+label::before{
|
|
font-family: 'FontAwesome';
|
|
content: "\f00c";
|
|
padding: 0 0 1px 0;
|
|
color: $green;
|
|
}
|
|
}
|
|
}
|
|
|
|
input[type="radio"]{
|
|
&+label::before {
|
|
border-radius: 16px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
form{
|
|
width: 100%;
|
|
|
|
&#login-form,
|
|
&#adv-form{
|
|
display: none;
|
|
}
|
|
}
|