up1.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. #btnarea {
  2. bottom: 5px;
  3. position: fixed;
  4. z-index: 1;
  5. }
  6. #create_filename {
  7. background-color: rgba(0,0,0,.5);
  8. border: 1px solid #FFF;
  9. border-bottom-right-radius: initial;
  10. box-sizing: border-box;
  11. color: #FFF;
  12. font-size: 16px;
  13. left: 10px;
  14. margin: 0;
  15. max-width: 100%;
  16. opacity: .75;
  17. overflow: hidden;
  18. padding: 5px;
  19. position: fixed;
  20. top: 10px;
  21. white-space: nowrap;
  22. width: 170px;
  23. z-index: 1;
  24. }
  25. #downloaded_filename {
  26. background-color: rgba(0,0,0,.5);
  27. border-radius: 5px;
  28. box-sizing: border-box;
  29. color: #FFF;
  30. display: block;
  31. height: 40px;
  32. line-height: 30px;
  33. margin: 0;
  34. opacity: .75;
  35. overflow: hidden;
  36. padding: 5px;
  37. text-align: middle;
  38. text-overflow: ellipsis;
  39. vertical-align: middle;
  40. white-space: nowrap;
  41. z-index: 1;
  42. }
  43. #finallink,#downloadprogress {
  44. color: #FFF;
  45. }
  46. #create_linenos {
  47. color: #7d7d7d;
  48. float: left;
  49. font-family: monospace;
  50. left: 5px;
  51. overflow: hidden;
  52. position: absolute;
  53. text-align: right;
  54. top: 6.5px;
  55. width: 30px;
  56. z-index: -1;
  57. }
  58. .line {
  59. word-wrap: normal;
  60. white-space: pre-wrap;
  61. min-height: 1em;
  62. }
  63. .line .linenum {
  64. color: #7d7d7d;
  65. font-family: monospace;
  66. padding: 0 15px 0 10px;
  67. text-align: center;
  68. position: absolute;
  69. left: -8px;
  70. text-align: right;
  71. width: 30px;
  72. }
  73. #module_download .preview {
  74. display: block;
  75. margin: 0 auto;
  76. max-height: 100%;
  77. max-width: 100%;
  78. }
  79. #module_download,#downloaddetails {
  80. height: 100%;
  81. position: absolute;
  82. top: 0;
  83. width: 100%;
  84. }
  85. #pastearea {
  86. cursor: pointer;
  87. }
  88. #pastearea.dragover {
  89. background-color: rgba(255,255,255,.2);
  90. }
  91. #pastearea:hover {
  92. -moz-transition: background-color 100ms ease-in;
  93. -ms-transition: background-color 100ms ease-in;
  94. -o-transition: background-color 100ms ease-in;
  95. -webkit-transition: background-color 100ms ease-in;
  96. background-color: #313538;
  97. transition: background-color 100ms ease-in;
  98. }
  99. #pastecatcher {
  100. height: 0;
  101. left: 0;
  102. opacity: 0;
  103. overflow: hidden;
  104. position: absolute;
  105. top: 0;
  106. width: 0;
  107. }
  108. #previewimg {
  109. max-height: 100%;
  110. max-width: 100%;
  111. }
  112. #previewimg img {
  113. display: block;
  114. margin: 0 auto;
  115. }
  116. #previewimg img:not(.dragged) {
  117. max-height: 100vh;
  118. max-width: 100vw;
  119. }
  120. #progressamountbg {
  121. background-color: rgba(0,10,0,.5);
  122. height: 100%;
  123. left: 0;
  124. position: absolute;
  125. top: 0;
  126. width: 0;
  127. z-index: -1;
  128. }
  129. #uploadview .centerview {
  130. display: table;
  131. height: 100%;
  132. width: 100%;
  133. }
  134. .boxarea {
  135. -moz-transition: background-color 400ms ease-out;
  136. -ms-transition: background-color 400ms ease-out;
  137. -o-transition: background-color 400ms ease-out;
  138. -webkit-transition: background-color 400ms ease-out;
  139. transition: background-color 400ms ease-out;
  140. }
  141. .btn {
  142. -webkit-box-align: start;
  143. background-color: rgba(0,0,0,.5);
  144. border: 2px solid #FFF;
  145. box-sizing: border-box;
  146. color: #FFF!important;
  147. cursor: pointer;
  148. display: inline-block;
  149. font: inherit;
  150. font-size: 16px;
  151. height: 40px;
  152. line-height: 16px;
  153. margin: 0 0 0 5px;
  154. opacity: .75;
  155. padding: 10px;
  156. text-align: center;
  157. text-decoration: none;
  158. transition: all 400ms ease-out;
  159. vertical-align: middle;
  160. white-space: nowrap;
  161. }
  162. .btn:hover {
  163. background-color: #313538;
  164. opacity: 1;
  165. transition: all 100ms ease-in;
  166. }
  167. .contentarea {
  168. border: 2px solid #FFF;
  169. bottom: 0;
  170. color: #FFF;
  171. height: 200px;
  172. left: 0;
  173. margin: auto;
  174. position: absolute;
  175. right: 0;
  176. text-align: center;
  177. top: 0;
  178. vertical-align: middle;
  179. width: 200px;
  180. }
  181. .contentarea .boxarea {
  182. display: table-cell;
  183. text-align: center;
  184. vertical-align: middle;
  185. }
  186. .contentarea h1 {
  187. margin: 0;
  188. }
  189. .downloadexplain {
  190. color: #fff;
  191. font-size: 30px;
  192. }
  193. .dragresize.dragging {
  194. cursor: nwse-resize;
  195. }
  196. .footer {
  197. bottom: 10px;
  198. margin: auto;
  199. position: fixed;
  200. text-align: center;
  201. width: 100%;
  202. color: #FFF;
  203. }
  204. .footer a {
  205. color: #FFF;
  206. font-size: 14px;
  207. opacity: .5;
  208. text-decoration: none;
  209. }
  210. .hidden {
  211. display: none!important;
  212. }
  213. .loadingtext {
  214. color: #FFF;
  215. text-align: center;
  216. }
  217. .noscript {
  218. color: #FFF;
  219. margin: 0;
  220. text-align: center;
  221. vertical-align: middle;
  222. }
  223. .previewtext {
  224. height: calc(100% - 110px);
  225. overflow: auto;
  226. position: absolute;
  227. top: 55px;
  228. width: 100%;
  229. }
  230. .previewtext > textarea {
  231. background: transparent none repeat scroll 0 0;
  232. border: 0 none;
  233. box-sizing: border-box;
  234. color: #c5c8c6!important;
  235. font-family: monospace!important;
  236. font-size: 13px;
  237. height: calc(100% - 5px);
  238. margin: 0;
  239. outline: medium none;
  240. padding: 6.5px 0 0 50px;
  241. position: absolute;
  242. resize: none;
  243. width: 100%;
  244. }
  245. .previewtext code {
  246. background: none;
  247. margin: 0;
  248. overflow: visible;
  249. }
  250. .previewtext pre {
  251. margin: 0;
  252. padding-left: 50px;
  253. }
  254. .topbar {
  255. box-sizing: border-box;
  256. display: flex;
  257. height: 40px;
  258. padding: 5px;
  259. position: fixed;
  260. width: 100%;
  261. z-index: 1;
  262. }
  263. .viewcontent {
  264. height: 100%;
  265. width: 100%;
  266. }
  267. .viewswitcher {
  268. -webkit-flex-shrink: 0;
  269. display: flex;
  270. flex-shrink: 0;
  271. margin-left: auto;
  272. vertical-align: top;
  273. white-space: nowrap;
  274. }
  275. audio.preview,video.preview,.downloadexplain,#downloadprogress,#previewimg {
  276. -webkit-transform: translateY(-50%);
  277. margin: 0 auto;
  278. position: relative;
  279. text-align: center;
  280. top: 50%;
  281. transform: translateY(-50%);
  282. }
  283. body {
  284. background-color: #1d1f21;
  285. overflow: auto;
  286. }
  287. body,html {
  288. font-family: Sans-Serif;
  289. height: 100%;
  290. margin: 0;
  291. overflow: auto;
  292. padding: 0;
  293. }