UserLayout.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @import "~antd/lib/style/themes/default.less";
  2. @inverse-color: #fff;
  3. .outer {
  4. width: 100%;
  5. height: 100%;
  6. background-image: url('http://scaffold.ant.design/angular-material-dashboard/login_bg.4e2f642c39de98d0e3c1.jpg');
  7. .inner {
  8. width: 100%;
  9. height: 100%;
  10. z-index: 2;
  11. background-color: rgba(0, 0, 0, .7);
  12. .container {
  13. width: 100%;
  14. min-height: 100%;
  15. background-repeat: no-repeat;
  16. background-position: center;
  17. background-size: 100%;
  18. padding: 110px 0 144px 0;
  19. position: relative;
  20. }
  21. .top {
  22. text-align: center;
  23. }
  24. .header {
  25. height: 44px;
  26. line-height: 44px;
  27. a {
  28. text-decoration: none;
  29. }
  30. }
  31. .logo {
  32. height: 44px;
  33. vertical-align: top;
  34. margin-right: 16px;
  35. }
  36. .title {
  37. font-size: 33px;
  38. color: @inverse-color;
  39. font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  40. font-weight: 600;
  41. position: relative;
  42. top: 2px;
  43. }
  44. .desc {
  45. font-size: @font-size-base;
  46. color: @inverse-color;
  47. margin-top: 12px;
  48. margin-bottom: 40px;
  49. }
  50. .footer {
  51. position: absolute;
  52. width: 100%;
  53. bottom: 0;
  54. .copyright {
  55. color: @inverse-color;
  56. }
  57. }
  58. }
  59. }