You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.5 KiB

7 years ago
  1. #login-form {
  2. width:100%;
  3. height:100%;
  4. display:flex;
  5. background:url(../images/admin/login-bg.jpg);
  6. justify-content: center;
  7. align-items: center;
  8. .login-logo {
  9. font-size:32px;
  10. font-weight:900;
  11. color:#fff;
  12. -webkit-animation: SLIDE-UP 0.6s linear forwards;
  13. -o-animation: SLIDE-UP 0.6s linear forwards;
  14. animation: SLIDE-UP 0.6s linear forwards;
  15. margin-bottom:20px;
  16. text-align:center;
  17. }
  18. .login-notice {
  19. color:#ccc;
  20. font-size:12px;
  21. text-align:center;
  22. letter-spacing: -0.04em;
  23. margin-top:10px;
  24. }
  25. .login-panel {
  26. -webkit-animation: SLIDE-DOWN 0.6s linear forwards;
  27. -o-animation: SLIDE-DOWN 0.6s linear forwards;
  28. animation: SLIDE-DOWN 0.6s linear forwards;
  29. border:1px solid #788694;
  30. width: 320px;
  31. box-shadow: 0 0 10px #000;
  32. border-radius: 8px;
  33. overflow: hidden;
  34. background: rgba(0,0,0,0.5);
  35. margin:0 auto;
  36. .login-heading {
  37. padding: 10px 15px;
  38. border-top-right-radius: 2px;
  39. border-top-left-radius: 2px;
  40. color: #ccc;
  41. border-bottom: 1px solid #788694;
  42. font-size: 0.9em;
  43. background: rgba(255,255,255,0.1);
  44. text-align:center;
  45. }
  46. .login-body {
  47. padding: 20px 20px;
  48. color: #eee;
  49. text-align: left;
  50. }
  51. .form-control {
  52. background:transparent;
  53. text-align:center;
  54. color:#fff;
  55. border: #ccc 1px solid;
  56. }
  57. .btn {
  58. background:#000;
  59. color:#fff;
  60. border:1px solid #ccc;
  61. padding: 10px;
  62. }
  63. }
  64. }