1234567891011121314151617181920212223242526272829303132333435363738394041 |
- form{
- &.user-login-form{
- padding: 2rem;
- background: white;
- & > div {
- &:not(:last-child){
- margin-bottom: 2rem;
- }
- .js-form-required{
- margin-bottom: 0;
- font-family: 'truenoregular';
- }
- input{
- border: 2px solid $color2;
- border-radius: 10px;
- padding: 0.5rem;
- &:focus{
- border: 2px solid $color1;
- border-radius: 10px!important;
- padding: 0.5rem!important;
- outline: none!important;
- }
- }
- .description{
- font-size: 0.8rem;
- margin-top: 0.4rem;
- font-family: 'truenolight';
- }
- }
- #edit-actions{
- display: flex;
- input{
- margin: auto;
- background: white;
- &:hover{
- @include shadow;
- }
- }
- }
- }
- }
|