Advertisement
wardhanarizaldi

WP custom login CSS

Jan 26th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1. /* LOGIN PAGE */
  2. .rz-login-container {
  3.     background-color: $primary;
  4.     border-radius: 5px;
  5.     padding: 20px;
  6. }
  7. .rz-login form {
  8.     label {
  9.         display: block;
  10.     }
  11. }
  12. p.login-username input,
  13. p.login-password input {
  14.     height: 40px;
  15.     vertical-align: middle;
  16.     display: inline-block;
  17.     //max-width: 100%;
  18.     width: 300px;
  19.     border: 0 none;
  20.     padding: 0 10px;
  21.     background: #fff;
  22.     color: #666;
  23.     border: 1px solid #e5e5e5;
  24.     transition: .2s ease-in-out;
  25.     transition-property: color,background-color,border;    
  26. }
  27. p.login-submit input {
  28.     height: 40px;
  29.     width: 300px;
  30.     margin: 0;
  31.     border: none;
  32.     overflow: visible;
  33.     text-transform: none;
  34.     display: inline-block;
  35.     box-sizing: border-box;
  36.     padding: 0 30px;
  37.     vertical-align: middle;
  38.     font-size: .875rem;
  39.     line-height: 38px;
  40.     text-align: center;
  41.     text-decoration: none;
  42.     text-transform: uppercase;
  43.     background-color: $grey;
  44.     color: white;
  45.     border-radius: 5px;
  46.  
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement