login.css 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. body {
  2. background: #eee !important;
  3. }
  4. .wrapper {
  5. margin-top: 80px;
  6. margin-bottom: 80px;
  7. }
  8. .form-signin {
  9. max-width: 380px;
  10. padding: 15px 35px 45px;
  11. margin: 0 auto;
  12. background-color: #fff;
  13. border: 1px solid rgba(0,0,0,0.1);
  14. .form-signin-heading,
  15. .checkbox {
  16. margin-bottom: 30px;
  17. }
  18. .checkbox {
  19. font-weight: normal;
  20. }
  21. .form-control {
  22. position: relative;
  23. font-size: 16px;
  24. height: auto;
  25. padding: 10px;
  26. @include box-sizing(border-box);
  27. &:focus {
  28. z-index: 2;
  29. }
  30. }
  31. input[type="text"] {
  32. margin-bottom: -1px;
  33. border-bottom-left-radius: 0;
  34. border-bottom-right-radius: 0;
  35. }
  36. input[type="password"] {
  37. margin-bottom: 20px;
  38. border-top-left-radius: 0;
  39. border-top-right-radius: 0;
  40. }
  41. }