Upload.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. html,body{
  2. margin:0px;
  3. padding:0px;
  4. -webkit-user-select:none;
  5. -moz-user-select:none;
  6. -o-user-select:none;
  7. user-select:none;
  8. overflow:hidden;
  9. }
  10. .Upload-button{
  11. width:120px;
  12. height:28px;
  13. background:#2C8EEF;
  14. border-radius:3px;
  15. color:#FFF;
  16. text-align:center;
  17. line-height:28px;
  18. position:absolute;
  19. left:calc(50% - 60px);
  20. cursor:pointer;
  21. }
  22. .Upload-button-button{
  23. width:118px;
  24. height:28px;
  25. background:#FFF;
  26. border:1px solid #2C8EEF;
  27. border-radius:0px 0px 2px 2px;
  28. color:#2C8EEF;
  29. text-align:center;
  30. line-height:28px;
  31. cursor:pointer;
  32. }
  33. .none{
  34. display: none;
  35. }
  36. .block{
  37. display: block;
  38. }
  39. .Upload-button-window{
  40. width:600px;
  41. height:400px;
  42. border:1px solid #DDDDDD;
  43. border-radius:2px;
  44. box-shadow:3px 3px 3px rgba(0,0,0,.1);
  45. cursor:default;
  46. position:absolute;
  47. left:-240px;
  48. top:100px;
  49. }
  50. .Upload-button-window-head{
  51. width:100%;
  52. height:34px;
  53. padding: 5px 10px;
  54. }
  55. .Upload-button-window-head div{
  56. color:#878787;
  57. font-size: 21px;
  58. float: left;
  59. }
  60. .Upload-button-window-head div:nth-child(3){
  61. width:20px;
  62. height:20px;
  63. background: url(img/Upload-close.png);
  64. background-size:100% 100%;
  65. margin-top:3px;
  66. margin-left:425px;
  67. cursor: pointer;
  68. }
  69. .Upload-button-window-type{
  70. padding: 0px 10px;
  71. width: 585px;
  72. height:36px;
  73. border-bottom: 1px solid #EFEFEF;
  74. }
  75. .Upload-button-window-type div{
  76. color:#878787;
  77. font-size: 16px;
  78. float: left;
  79. }
  80. .Upload-button-window-type div:nth-child(2){
  81. margin-left: 190px;
  82. }
  83. .Upload-button-window-type div:nth-child(3){
  84. margin-left: 120px;
  85. }
  86. .Upload-button-window-type div:nth-child(4){
  87. margin-left: 65px;
  88. }
  89. .Upload-button-window-file{
  90. width:100%;
  91. height:44px;
  92. float: left;
  93. }
  94. .Upload-button-window-file:hover{
  95. background:#D5E9FD;
  96. }
  97. .Upload-button-window-file div{
  98. float: left;
  99. }
  100. /*.Upload-button-window-file div:nth-child(1){
  101. width:32px;
  102. height:30px;
  103. background-size:100% 100%;
  104. margin:7px 10px;
  105. }*/
  106. .Upload-button-window-file div:nth-child(1){
  107. width:215px;
  108. height:30px;
  109. background-size:100% 100%;
  110. color:#878787;
  111. text-align:left;
  112. margin:7px 0px;
  113. overflow:hidden;
  114. text-indent:5px;
  115. }
  116. .Upload-button-window-file div:nth-child(2){
  117. width:80px;
  118. height:44px;
  119. color:#878787;
  120. font-size:13px;
  121. line-height:44px;
  122. text-align: right;
  123. }
  124. .Upload-button-window-file-finish{
  125. width:15px;
  126. height:15px;
  127. *background:url(img/finish.png);
  128. background-size:100% 100%;
  129. margin-top:10px;
  130. margin-left:111px;
  131. color:Red;
  132. }
  133. .Upload-button-window-file-working{
  134. width:90px;
  135. height:44px;
  136. color:#878787;
  137. line-height:44px;
  138. text-align:left;
  139. margin-left:7px;
  140. }
  141. .Upload-button-window-file div:nth-child(4){
  142. width:15px;
  143. height:15px;
  144. background:url(img/Upload-close.png);
  145. background-size:100% 100%;
  146. float: right;
  147. margin-top:14px;
  148. margin-right:80px;
  149. cursor:pointer;
  150. }