upload.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /**
  2. * @name upload.css
  3. * @author Tobias Reich
  4. * @copyright 2014 by Tobias Reich
  5. */
  6. #upload {
  7. display: none;
  8. }
  9. .upload_overlay {
  10. position: fixed;
  11. width: 100%;
  12. height: 100%;
  13. top: 0px;
  14. left: 0px;
  15. background-color: rgba(0,0,0,.85);
  16. z-index: 1000;
  17. }
  18. .upload_message {
  19. position: absolute;
  20. display: inline-block;
  21. width: 450px;
  22. margin-left: -225px;
  23. margin-top: -170px;
  24. background-color: #444;
  25. background-image: -webkit-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
  26. background-image: -moz-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
  27. background-image: -ms-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
  28. background-image: linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
  29. border-radius: 5px;
  30. box-shadow: 0px 0px 5px #000, inset 0px 1px 0px rgba(255,255,255,.08), inset 1px 0px 0px rgba(255,255,255,.03), inset -1px 0px 0px rgba(255,255,255,.03);
  31. /* Animation */
  32. -webkit-animation-name: moveUp;
  33. -webkit-animation-duration: .3s;
  34. -webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  35. -moz-animation-name: moveUp;
  36. -moz-animation-duration: .3s;
  37. -moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  38. animation-name: moveUp;
  39. animation-duration: .3s;
  40. animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
  41. }
  42. /* Header ------------------------------------------------*/
  43. .upload_message h1 {
  44. float: left;
  45. width: 100%;
  46. padding: 12px 0px;
  47. color: #fff;
  48. font-size: 16px;
  49. font-weight: bold;
  50. text-shadow: 0px -1px 0px #222;
  51. text-align: center;
  52. }
  53. .upload_message .close {
  54. position: absolute;
  55. top: 0px;
  56. right: 0px;
  57. padding: 11px 14px 6px 7px;
  58. color: #aaa;
  59. font-size: 20px;
  60. text-shadow: 0px -1px 0px #222;
  61. cursor: pointer;
  62. }
  63. .upload_message .close:hover {
  64. color: #fff;
  65. }
  66. /* Rows ------------------------------------------------*/
  67. .upload_message .rows {
  68. float: left;
  69. margin: 3px 8px 8px 8px;
  70. width: calc(100% - 16px);
  71. height: 300px;
  72. background-color: rgba(0, 0, 0, .5);
  73. overflow: hidden;
  74. overflow-y: scroll;
  75. border-radius: 3px;
  76. box-shadow: inset 0px 0px 3px rgba(0, 0, 0, .8);
  77. }
  78. /* Row ------------------------------------------------*/
  79. .upload_message .rows .row {
  80. float: left;
  81. display: inline-block;
  82. padding: 8px 0px;
  83. width: 100%;
  84. background-color: rgba(255, 255, 255, .02);
  85. }
  86. .upload_message .rows .row:nth-child(2n) {
  87. background-color: rgba(255, 255, 255, 0);
  88. }
  89. .upload_message .rows .row a.name {
  90. float: left;
  91. width: 70%;
  92. padding: 5px 10px;
  93. color: #fff;
  94. font-size: 14px;
  95. white-space: nowrap;
  96. overflow: hidden;
  97. }
  98. .upload_message .rows .row a.status {
  99. float: right;
  100. padding: 5px 10px;
  101. color: rgba(255, 255, 255, .5);
  102. font-size: 14px;
  103. }
  104. .upload_message .rows .row a.status.error {
  105. color: rgb(213, 24, 24);
  106. }
  107. .upload_message .rows .row a.status.success {
  108. color: rgb(42, 213, 0);
  109. }
  110. /* Icon ------------------------------------------------
  111. .upload_message a {
  112. float: left;
  113. width: 100%;
  114. margin: 35px 0px 5px 0px;
  115. color: #fff;
  116. font-size: 70px;
  117. text-shadow: 0px 1px 2px rgba(0,0,0,.5);
  118. text-align: center;
  119. -webkit-animation-name: pulse;
  120. -webkit-animation-duration: 2s;
  121. -webkit-animation-timing-function: ease-in-out;
  122. -webkit-animation-iteration-count: infinite;
  123. -moz-animation-name: pulse;
  124. -moz-animation-duration: 2s;
  125. -moz-animation-timing-function: ease-in-out;
  126. -moz-animation-iteration-count: infinite;
  127. animation-name: pulse;
  128. animation-duration: 2s;
  129. animation-timing-function: ease-in-out;
  130. animation-iteration-count: infinite;
  131. }*/
  132. /* Text ------------------------------------------------
  133. .upload_message p {
  134. float: left;
  135. width: 100%;
  136. margin: 10px 0px 35px 0px;
  137. color: #fff;
  138. font-size: 14px;
  139. text-align: center;
  140. text-shadow: 0px -1px 0px rgba(0,0,0,.5);*/
  141. }
  142. /* Progress ------------------------------------------------
  143. .upload_message .progressbar {
  144. float: left;
  145. width: 170px;
  146. height: 25px;
  147. margin: 15px;
  148. background-size: 50px 25px;
  149. background-repeat: repeat-x;
  150. background-image: -webkit-linear-gradient(left, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
  151. background-image: -moz-linear-gradient(left, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
  152. background-image: linear-gradient(left right, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
  153. border: 1px solid #090909;
  154. box-shadow: 0 1px 0 rgba(255,255,255,.06), inset 0px 0px 2px #222;
  155. border-radius: 50px;
  156. -webkit-animation-name: moveBackground;
  157. -webkit-animation-duration: 1s;
  158. -webkit-animation-timing-function: linear;
  159. -webkit-animation-iteration-count: infinite;
  160. -moz-animation-name: moveBackground;
  161. -moz-animation-duration: 1s;
  162. -moz-animation-timing-function: linear;
  163. -moz-animation-iteration-count: infinite;
  164. animation-name: moveBackground;
  165. animation-duration: 1s;
  166. animation-timing-function: linear;
  167. animation-iteration-count: infinite;
  168. }
  169. .upload_message .progressbar div {
  170. float: left;
  171. width: 0%;
  172. height: 100%;
  173. box-shadow: 0 1px 0 #000, 1px 0px 2px #000;
  174. background-color: #f5f2f7;
  175. background-image: -webkit-linear-gradient(top, #f5f2f7, #c7c6c8);
  176. background-image: -moz-linear-gradient(top, #f5f2f7, #c7c6c8);
  177. background-image: -ms-linear-gradient(top, #f5f2f7, #c7c6c8);
  178. background-image: linear-gradient(top, #f5f2f7, #c7c6c8);
  179. border-radius: 50px;
  180. -webkit-transition: width .2s, opacity .5;
  181. -moz-transition: width .2s, opacity .5;
  182. transition: width .2s, opacity .5;
  183. }*/