style.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. *{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html{
  6. width:100%;
  7. height:100%;
  8. }
  9. .indexApp{
  10. position: absolute;
  11. /* top: 50%; */
  12. /* margin: -20px 0 0 -77px; */
  13. }
  14. .w100{
  15. width:100%;
  16. height:100%;
  17. }
  18. .btnpanel{
  19. width:40%;
  20. margin:20% auto;
  21. height:100%;
  22. }
  23. .elButton{
  24. display: block;
  25. line-height: 1;
  26. white-space: nowrap;
  27. cursor: pointer;
  28. background: #fff;
  29. border: 1px solid #d8dce5;
  30. border-color: #d8dce5;
  31. -webkit-appearance: none;
  32. text-align: center;
  33. box-sizing: border-box;
  34. outline: none;
  35. margin: 0;
  36. transition: .1s;
  37. font-weight: 500;
  38. -moz-user-select: none;
  39. -webkit-user-select: none;
  40. -ms-user-select: none;
  41. border-radius: 4px;
  42. width:100%;
  43. height:25%;
  44. margin-bottom:5%;
  45. font-size: 50px;
  46. }
  47. .elButton a{
  48. text-decoration: none;
  49. }
  50. .el-button a{
  51. text-decoration: none;
  52. color: #5a5e66;
  53. }
  54. .el-form{
  55. padding: 20px;
  56. }
  57. .avatar-uploader{
  58. width: 50px;
  59. float: left;
  60. margin-right: 5px;
  61. }
  62. .avatar-uploader .el-upload {
  63. background-color: #fbfdff;
  64. border: 1px dashed #c0ccda;
  65. border-radius: 6px;
  66. box-sizing: border-box;
  67. width: 50px;
  68. height: 50px;
  69. line-height: 146px;
  70. vertical-align: top;
  71. }
  72. .el-icon-data,.el-icon-plus{
  73. font-size: 20px;
  74. color: #8c939d;
  75. position: absolute;
  76. margin: 13px 0 0 -10px;
  77. }
  78. .avatar {
  79. width: 50px;
  80. height: 50px;
  81. display: block;
  82. }
  83. .excess label.el-form-item__label{
  84. line-height: 1;
  85. padding-top: 7px;
  86. }
  87. .skip a span{
  88. text-decoration: underline;
  89. }