install.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. body {
  2. text-align: center;
  3. }
  4. h1 {
  5. margin-top: 20px;
  6. }
  7. h1 img {
  8. width: 120px;
  9. height: 120px;
  10. }
  11. h2 {
  12. font-size: 28px;
  13. font-weight: normal;
  14. color: #3C5675;
  15. margin-bottom: 0
  16. }
  17. .content {
  18. margin-top: 20px;
  19. }
  20. .content p {
  21. margin: 20px;
  22. }
  23. .content form {
  24. width: 500px;
  25. margin: 0 auto 20px;
  26. }
  27. .content form .bg {
  28. margin-top: 20px;
  29. background-color: #fff;
  30. border: 1px solid #fff;
  31. border-radius: 3px;
  32. padding: 14px 14px;
  33. box-shadow: 0 0 8px #cccccc;
  34. }
  35. .content form .bg .layui-card {
  36. background-color: #fafafa;
  37. color: #ff8080;
  38. font-size: 15px;
  39. font-weight: bold;
  40. }
  41. .content form .layui-form-item:last-child {
  42. margin-bottom: 0 !important;
  43. }
  44. .content form .layui-btn {
  45. margin-top: 20px;
  46. }
  47. .content .layui-elem-field legend {
  48. font-size: 16px;
  49. color: #8a8a8a;
  50. }
  51. .content .tips {
  52. float: left;
  53. margin-top: 5px;
  54. margin-bottom: 5px;
  55. font-size: 12px;
  56. color: #eca6a6
  57. }
  58. .content .admin-tips {
  59. float: left;
  60. margin-top: 5px;
  61. margin-bottom: 5px;
  62. font-size: 12px;
  63. color: #eca6a6
  64. }
  65. .content .desc {
  66. font-size: 16px;
  67. color: #4E5465;
  68. margin-bottom: 30px;
  69. }
  70. .content .desc a {
  71. color: #07adeb;
  72. margin-right: 10px;
  73. }
  74. .content .desc a:first-child {
  75. margin-left: 10px;
  76. }
  77. .error {
  78. background: #D83E3E;
  79. color: #fff;
  80. padding: 15px 20px;
  81. border-radius: 5px;
  82. margin-bottom: 20px;
  83. }
  84. @media screen and (max-width: 768px) {
  85. .content form {
  86. width: 95%;
  87. }
  88. }