adminlogin.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. html {
  2. font-family: sans-serif;
  3. -ms-text-size-adjust: 100%;
  4. -webkit-text-size-adjust: 100%;
  5. height: 100%;
  6. }
  7. body {
  8. text-rendering: optimizeLegibility;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. font-family: "helvetica neue", helvetica, "hiragino sans gb", arial, "\5FAE\8F6F\96C5\9ED1", "\5B8B\4F53", sans-serif;
  12. font-size: 100%;
  13. line-height: 1.5;
  14. color: #333;
  15. background: #FFFFFF;
  16. }
  17. .wrap {
  18. margin-top: 180px;
  19. }
  20. .login-wrap {
  21. background: #ffffff;
  22. -webkit-animation: bounceIn 600ms linear;
  23. -moz-animation: bounceIn 600ms linear;
  24. -o-animation: bounceIn 600ms linear;
  25. animation: bounceIn 600ms linear;
  26. opacity: 0.9;
  27. filter: alpha(opacity=90);
  28. -moz-opacity: 0.9;
  29. padding: 20px;
  30. border-radius: 5px;
  31. -webkit-border-radius: 5px;
  32. -moz-border-radius: 5px;
  33. -ms-border-radius: 5px;
  34. -o-border-radius: 5px;
  35. box-shadow: 0 0 10px #666;
  36. }
  37. .login-wrap h1 {
  38. font-size: 30px;
  39. margin: 10px 0 20px;
  40. }
  41. .logo {
  42. position: absolute;
  43. left: 50px;
  44. top: 40px;
  45. }
  46. .copyright {
  47. background: rgba(0, 0, 0, 0.3);
  48. position: absolute;
  49. padding: 10px;
  50. left: 50px;
  51. bottom: 20px;
  52. font-size: 20px;
  53. color: #fff;
  54. }
  55. .copyright a {
  56. color: #fff;
  57. text-decoration: none;
  58. }