login.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .loginbox {
  2. border-radius: 3px;
  3. .form-group;
  4. &.onecolumn {
  5. .make-sm-column(6);
  6. .make-sm-column-push(3);
  7. .make-md-column(4);
  8. .make-md-column-push(4);
  9. .well;
  10. }
  11. &.twocolumns .loginpanel {
  12. .make-sm-column(4);
  13. .make-lg-column(3);
  14. .well;
  15. }
  16. &.twocolumns .signuppanel {
  17. .make-sm-column(7);
  18. .make-sm-column-push(1);
  19. .make-lg-column(8);
  20. .make-lg-column-push(1);
  21. }
  22. .loginform {
  23. .form-label {
  24. text-align: left;
  25. width: 100%;
  26. margin-bottom: 5px;
  27. }
  28. .form-input {
  29. width: 100%;
  30. margin-bottom: 5px;
  31. input[type="text"],
  32. input[type="password"] {
  33. .form-control;
  34. width: 100%;
  35. }
  36. input[type="submit"] {
  37. margin: 10px 0 0;
  38. }
  39. }
  40. }
  41. input[type="submit"] {
  42. margin: 10px 0 0;
  43. }
  44. .desc {
  45. font-size: 30px;
  46. line-height: 30px;
  47. font-weight: 300;
  48. color: @text-color;
  49. }
  50. .subcontent {
  51. text-align: left;
  52. padding: 0;
  53. margin: 0;
  54. .desc {
  55. display: none;
  56. }
  57. }
  58. }