WBAccount.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,body{
  6. width: 100%;
  7. height: 100%;
  8. }
  9. button{
  10. margin-top: 20px;
  11. color: white;
  12. background: rgba(22, 155, 213, 1);
  13. width: 150px;
  14. height: 44px;
  15. border-radius: 5px;
  16. margin-left: 10px;
  17. cursor: pointer;
  18. border: none;
  19. outline: none;
  20. }
  21. table,tr,td{
  22. box-sizing: border-box;
  23. border-width: 1px;
  24. border-style: solid;
  25. border-color: rgba(161, 161, 161, 1);
  26. }
  27. .tb{
  28. margin-top:20px;
  29. padding: 0 10px;
  30. }
  31. td button{
  32. margin-top: 3%;
  33. color: white;
  34. background: rgba(22, 155, 213, 1);
  35. width: 45%;
  36. border-radius: 5px;
  37. margin-left: 3%;
  38. }
  39. .insertDiv{
  40. margin: 0 auto;
  41. text-align: center;
  42. width: 30%;
  43. margin-top: 50px;
  44. box-sizing: border-box;
  45. border-width: 1px;
  46. border-style: solid;
  47. border-color: rgba(161, 161, 161, 1);
  48. border-radius: 6px;
  49. padding: 20px;
  50. position: fixed;
  51. top: 30%;
  52. left: 30%;
  53. background: white;
  54. display: none;
  55. }
  56. .insertDiv button{
  57. margin-top: 3%;
  58. color: white;
  59. background: rgba(22, 155, 213, 1);
  60. width: 25%;
  61. border-radius: 5px;
  62. margin-left: 3%;
  63. }
  64. .updateDiv{
  65. margin: 0 auto;
  66. text-align: center;
  67. width: 30%;
  68. margin-top: 50px;
  69. box-sizing: border-box;
  70. border-width: 1px;
  71. border-style: solid;
  72. border-color: rgba(161, 161, 161, 1);
  73. border-radius: 6px;
  74. padding: 20px;
  75. position: fixed;
  76. top: 30%;
  77. left: 30%;
  78. background: white;
  79. display: none;
  80. }
  81. .updateDiv button{
  82. margin-top: 3%;
  83. color: white;
  84. background: rgba(22, 155, 213, 1);
  85. width: 25%;
  86. border-radius: 5px;
  87. margin-left: 3%;
  88. }
  89. .header{
  90. font-size:22px;
  91. }
  92. .header div{
  93. float: right;
  94. }
  95. .info label{
  96. vertical-align: middle;
  97. display: inline-block;
  98. text-align: justify;
  99. text-align-last: justify;
  100. float:left;
  101. width: 30%;
  102. }
  103. .info input{
  104. vertical-align: middle;
  105. }