Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 179 | espaco | 1 | .login-body { |
| 2 | background: linear-gradient(180deg, #525D72 0%, #69768D 100%); |
||
| 3 | color:#c3ccdd; |
||
| 4 | height: 100vh; |
||
| 5 | |||
| 6 | .login-wrapper { |
||
| 7 | @include flex(); |
||
| 8 | @include flex-align-center(); |
||
| 9 | @include flex-justify-center(); |
||
| 10 | height: 100vh; |
||
| 11 | |||
| 12 | .login-panel { |
||
| 13 | width: 30%; |
||
| 14 | height: 100%; |
||
| 15 | text-align: center; |
||
| 16 | padding: 40px 20px; |
||
| 17 | @include flex(); |
||
| 18 | @include flex-align-center(); |
||
| 19 | @include flex-justify-between(); |
||
| 20 | @include flex-direction-column(); |
||
| 21 | |||
| 22 | .logo { |
||
| 23 | img { |
||
| 24 | height: 45px; |
||
| 25 | } |
||
| 26 | } |
||
| 27 | |||
| 28 | .login-form { |
||
| 29 | > p { |
||
| 30 | font-weight: 600; |
||
| 31 | margin: 0; |
||
| 32 | color:#c3ccdd; |
||
| 33 | margin-bottom: 32px; |
||
| 34 | |||
| 35 | > a { |
||
| 36 | color: #f4f7f9; |
||
| 37 | cursor: pointer; |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | > input { |
||
| 42 | width: 85%; |
||
| 43 | max-width: 310px; |
||
| 44 | margin-bottom: 20px; |
||
| 45 | background-color: #F6F9FE; |
||
| 46 | color: #515C66; |
||
| 47 | |||
| 48 | &::placeholder { |
||
| 49 | color: #515C66; |
||
| 50 | } |
||
| 51 | } |
||
| 52 | |||
| 53 | > button { |
||
| 54 | width: 85%; |
||
| 55 | max-width: 310px; |
||
| 56 | } |
||
| 57 | } |
||
| 58 | |||
| 59 | p { |
||
| 60 | font-weight: 600; |
||
| 61 | margin: 0; |
||
| 62 | color:#c3ccdd; |
||
| 63 | |||
| 64 | > a { |
||
| 65 | color: #f4f7f9; |
||
| 66 | } |
||
| 67 | } |
||
| 68 | } |
||
| 69 | } |
||
| 70 | } |
||
| 71 | |||
| 72 | @media(max-width:992px) { |
||
| 73 | .login-body { |
||
| 74 | .login-wrapper { |
||
| 75 | .login-panel { |
||
| 76 | width: 100%; |
||
| 77 | } |
||
| 78 | } |
||
| 79 | } |
||
| 80 | } |