2020-06-15 06:56:21 +00:00
|
|
|
form {
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0 .45rem 0 .45rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-08-12 11:09:47 +00:00
|
|
|
input[type=file] {
|
|
|
|
border: unset !important;
|
|
|
|
}
|
2020-06-15 06:56:21 +00:00
|
|
|
|
2020-08-03 06:45:45 +00:00
|
|
|
.fa-eye {
|
|
|
|
font-size: 25px;
|
|
|
|
color: grey;
|
2020-08-03 07:53:57 +00:00
|
|
|
margin: 0 0 16px -35px;
|
2020-08-03 07:42:17 +00:00
|
|
|
align-self: center;
|
|
|
|
z-index: 98;
|
2020-08-03 07:53:57 +00:00
|
|
|
background-color: white;
|
2020-08-03 06:45:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 06:56:21 +00:00
|
|
|
.btn {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: .5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 1.05rem;
|
|
|
|
background-color: white;
|
|
|
|
color: $sde-black-80;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark {
|
|
|
|
color: white;
|
|
|
|
background-color: $sde-black-80;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-sde-blue {
|
|
|
|
color: white;
|
|
|
|
background-color: $sde-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-disabled {
|
|
|
|
color: white;
|
|
|
|
background-color: $sde-black-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-inline {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
2020-06-30 06:03:42 +00:00
|
|
|
input, select{
|
2020-06-15 06:56:21 +00:00
|
|
|
border: grey solid 2px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: transparent;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 2rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.appinput {
|
|
|
|
border: none;
|
|
|
|
border-bottom: white solid 2px;
|
|
|
|
background-color: transparent;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: rgba(255,255,255,1);
|
|
|
|
line-height: 2rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2020-06-30 08:19:01 +00:00
|
|
|
|
|
|
|
.appinput::placeholder {
|
|
|
|
opacity: 1;
|
|
|
|
color: white;
|
|
|
|
}
|
2020-08-03 07:42:17 +00:00
|
|
|
|
|
|
|
.form-control {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group {
|
|
|
|
position: relative;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
|
|
|
-ms-flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
-ms-flex-align: stretch;
|
|
|
|
align-items: stretch;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-append {
|
|
|
|
display: flex;
|
|
|
|
}
|