insatll.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. margin:0 auto;
  25. width: 500px;
  26. margin-bottom: 20px;
  27. }
  28. .content form .bg{
  29. margin-top: 20px;
  30. background-color: #fff;
  31. border: 1px solid #fff;
  32. border-radius: 3px;
  33. padding: 14px 14px;
  34. box-shadow: 0 0 8px #cccccc;
  35. }
  36. .content form .layui-form-item:last-child{
  37. margin-bottom:0!important;
  38. }
  39. .content form .layui-btn{
  40. margin-top: 20px;
  41. }
  42. .content .layui-elem-field legend{
  43. font-size: 16px;
  44. color: #8a8a8a;
  45. }
  46. .content .tips{
  47. float: left;
  48. margin-top: 5px;
  49. margin-bottom: 5px;
  50. font-size: 12px;
  51. color: #eca6a6
  52. }
  53. .content .admin-tips{
  54. float: left;
  55. margin-top: 5px;
  56. margin-bottom: 5px;
  57. font-size: 12px;
  58. color: #eca6a6
  59. }
  60. .content .desc{
  61. font-size: 16px;
  62. color: #4E5465;
  63. margin-bottom: 30px;
  64. }
  65. .content .desc a{
  66. color: #07adeb;
  67. margin-right: 10px;
  68. }
  69. .content .desc a:first-child{
  70. margin-left: 10px;
  71. }
  72. .error{
  73. background: #D83E3E;
  74. color: #fff;
  75. padding: 15px 20px;
  76. border-radius: 5px;
  77. margin-bottom: 20px;
  78. }
  79. @media screen and (max-width:768px) {
  80. .content form{
  81. width: 95%;
  82. }
  83. }