safeshare.css 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. #btnarea {
  2. bottom: 5px;
  3. position: fixed;
  4. z-index: 2;
  5. width: 100%;
  6. }
  7. #btnarea .right {
  8. margin-right: 5px;
  9. z-index: 2;
  10. }
  11. #create_filename {
  12. background-color: rgba(0,0,0,.5);
  13. border: 1px solid #FFF;
  14. border-bottom-right-radius: initial;
  15. box-sizing: border-box;
  16. color: #FFF;
  17. font-size: 16px;
  18. left: 10px;
  19. margin: 0;
  20. max-width: 100%;
  21. opacity: .75;
  22. overflow: hidden;
  23. padding: 5px;
  24. position: fixed;
  25. top: 10px;
  26. white-space: nowrap;
  27. width: 170px;
  28. z-index: 2;
  29. }
  30. #downloaded_filename {
  31. background-color: rgba(0,0,0,.5);
  32. border-radius: 5px;
  33. box-sizing: border-box;
  34. color: #FFF;
  35. display: block;
  36. height: 40px;
  37. line-height: 30px;
  38. margin: 0;
  39. opacity: .75;
  40. overflow: hidden;
  41. padding: 5px;
  42. text-align: middle;
  43. text-overflow: ellipsis;
  44. vertical-align: middle;
  45. white-space: nowrap;
  46. z-index: 2;
  47. }
  48. #finallink,#downloadprogress {
  49. color: #FFF;
  50. }
  51. #create_linenos {
  52. color: #7d7d7d;
  53. float: left;
  54. font-family: monospace;
  55. left: 5px;
  56. overflow: hidden;
  57. position: absolute;
  58. text-align: right;
  59. top: 6.5px;
  60. width: 30px;
  61. z-index: -1;
  62. }
  63. .line {
  64. word-wrap: normal;
  65. white-space: pre-wrap;
  66. min-height: 1em;
  67. }
  68. .line:after {
  69. content: "";
  70. }
  71. .line .linenum {
  72. -webkit-user-select: none; /* Chrome all / Safari all */
  73. -moz-user-select: none; /* Firefox all */
  74. -ms-user-select: none; /* IE 10+ */
  75. user-select: none; /* Likely future */
  76. color: #7d7d7d;
  77. font-family: monospace;
  78. padding: 0 15px 0 10px;
  79. text-align: center;
  80. position: absolute;
  81. left: -8px;
  82. text-align: right;
  83. width: 30px;
  84. }
  85. #module_download .preview {
  86. display: block;
  87. margin: 0 auto;
  88. max-height: 100%;
  89. max-width: 100%;
  90. }
  91. #module_download,#downloaddetails {
  92. height: 100%;
  93. position: absolute;
  94. top: 0;
  95. width: 100%;
  96. }
  97. #pastearea {
  98. cursor: pointer;
  99. background-color: #005B9F;
  100. background-image: url("../safecoin_mark.svg");
  101. background-repeat: no-repeat;
  102. background-position: center center;
  103. -moz-border-radius: 13x;
  104. border-radius: 13px;
  105. opacity: .75;
  106. z-index: 2;
  107. }
  108. #pastearea.dragover {
  109. background-color: rgba(255,255,255,.2);
  110. opacity: 1;
  111. }
  112. #pastearea:hover {
  113. -moz-transition: background-color 100ms ease-in;
  114. -ms-transition: background-color 100ms ease-in;
  115. -o-transition: background-color 100ms ease-in;
  116. -webkit-transition: background-color 100ms ease-in;
  117. background-color: #3FADFF;
  118. transition: background-color 100ms ease-in;
  119. opacity: 1;
  120. }
  121. #pastecatcher {
  122. height: 0;
  123. left: 0;
  124. opacity: 0;
  125. overflow: hidden;
  126. position: absolute;
  127. top: 0;
  128. width: 0;
  129. }
  130. #previewimg {
  131. max-height: 100%;
  132. max-width: 100%;
  133. }
  134. #previewimg img, .preview video, .preview audio {
  135. display: block;
  136. margin: 0 auto;
  137. }
  138. #previewimg img:not(.dragged), .preview audio, .preview video {
  139. max-height: 100vh;
  140. max-width: 100vw;
  141. }
  142. #progressamountbg {
  143. background-color: rgba(0,10,0,.5);
  144. height: 100%;
  145. left: 0;
  146. position: absolute;
  147. top: 0;
  148. width: 0;
  149. z-index: -1;
  150. }
  151. #uploadview .centerview {
  152. display: table;
  153. height: 100%;
  154. width: 100%;
  155. }
  156. .boxarea {
  157. -moz-transition: background-color 400ms ease-out;
  158. -ms-transition: background-color 400ms ease-out;
  159. -o-transition: background-color 400ms ease-out;
  160. -webkit-transition: background-color 400ms ease-out;
  161. transition: background-color 400ms ease-out;
  162. }
  163. .btn {
  164. -webkit-box-align: start;
  165. background-color: #005B9F;
  166. border: 2px solid #FFF;
  167. box-sizing: border-box;
  168. color: #FFF!important;
  169. cursor: pointer;
  170. display: inline-block;
  171. font: inherit;
  172. font-size: 16px;
  173. height: 40px;
  174. line-height: 16px;
  175. margin: 0 0 0 5px;
  176. opacity: .75;
  177. padding: 10px;
  178. text-align: center;
  179. text-decoration: none;
  180. transition: all 400ms ease-out;
  181. vertical-align: middle;
  182. white-space: nowrap;
  183. z-index: 2;
  184. -moz-border-radius: 15px;
  185. border-radius: 15px;
  186. }
  187. .btn:hover {
  188. background-color: #3FADFF;
  189. opacity: 1;
  190. transition: all 100ms ease-in;
  191. }
  192. .dbtn {
  193. -webkit-box-align: start;
  194. background-color: #c64b00;
  195. border: 2px solid #FFF;
  196. box-sizing: border-box;
  197. color: #FFF!important;
  198. cursor: pointer;
  199. display: inline-block;
  200. font: inherit;
  201. font-size: 16px;
  202. height: 40px;
  203. line-height: 16px;
  204. margin: 0 0 0 5px;
  205. opacity: .75;
  206. padding: 10px;
  207. text-align: center;
  208. text-decoration: none;
  209. transition: all 400ms ease-out;
  210. vertical-align: middle;
  211. white-space: nowrap;
  212. z-index: 2;
  213. -moz-border-radius: 15px;
  214. border-radius: 15px;
  215. }
  216. .dbtn:hover {
  217. background-color: #ff6200;
  218. opacity: 1;
  219. transition: all 100ms ease-in;
  220. }
  221. .contentarea {
  222. border: 2px solid #FFF;
  223. bottom: 0;
  224. color: #FFF;
  225. height: 200px;
  226. left: 0;
  227. margin: auto;
  228. position: absolute;
  229. right: 0;
  230. text-align: center;
  231. top: 0;
  232. vertical-align: middle;
  233. width: 200px;
  234. -moz-border-radius: 15px;
  235. border-radius: 15px;
  236. }
  237. .downloading {
  238. color: #FFF;
  239. margin: 2px;
  240. text-align: center;
  241. vertical-align: middle;
  242. position: fixed;
  243. top: 50%;
  244. left: 50%;
  245. margin-right: -50%;
  246. padding: 20px;
  247. transform: translate(-50%, -50%);
  248. }
  249. .waiting {
  250. color: #FFF;
  251. margin: 0;
  252. text-align: center;
  253. vertical-align: middle;
  254. }
  255. .wait {
  256. color: #FFF;
  257. margin: 0;
  258. text-align: center;
  259. }
  260. span.dropt {/*border-bottom: thin dotted; /*background: #ffeedd;*/}
  261. span.dropt:hover span {position: fixed;
  262. top: 50%;
  263. left: 50%;
  264. margin-right: -50%;
  265. transform: translate(-50%, -50%);
  266. padding: 50px ;
  267. z-index: 0;
  268. background-color: #1d1f21;
  269. color: #FFF;
  270. font-size: 12px;
  271. }
  272. span.dropt span {position: absolute; left: -9999px;
  273. margin: 2px 0 0 0px;
  274. padding: 2px;
  275. z-index: 1;
  276. }
  277. span.droptft {z-index: 6;/*border-bottom: thin dotted; /*background: #ffeedd;*/}
  278. span.droptft:hover span {position: absolute;
  279. top: 50%;
  280. left: 50%;
  281. margin-right: -50%;
  282. transform: translate(-50%, -120%);
  283. z-index: 1;
  284. }
  285. span.droptft span {position: absolute; left: -9999px;
  286. margin: 2px 0 0 0px;
  287. padding: 2px;
  288. z-index: 1;
  289. }
  290. .help { position: fixed;
  291. top: 50%;
  292. left: 50%;
  293. margin-right: -50%;
  294. padding: 10px;
  295. transform: translate(-50%, -50%);
  296. z-index: 1;
  297. background-color: #1d1f21;
  298. color: #FFF;
  299. font-size: 12px;
  300. }
  301. .donate { position: fixed;
  302. top: 50%;
  303. left: 50%;
  304. margin: 2px 0 0 0px;
  305. margin-right: -50%;
  306. padding: 20x;
  307. transform: translate(-50%, -50%);
  308. z-index: 1;
  309. background-color: #1d1f21;
  310. color: #FFF;
  311. font-size: 12px;
  312. }
  313. .contentarea .boxarea {
  314. display: table-cell;
  315. text-align: center;
  316. vertical-align: middle;
  317. }
  318. .contentarea h1 {
  319. margin: 0;
  320. }
  321. .downloadexplain {
  322. color: #fff;
  323. font-size: 30px;
  324. }
  325. .dragresize.dragging {
  326. cursor: nwse-resize;
  327. }
  328. .footer {
  329. bottom: 10px;
  330. margin: auto;
  331. position: fixed;
  332. text-align: center;
  333. width: 100%;
  334. color: #FFF;
  335. }
  336. .footer a {
  337. color: #FFF;
  338. font-size: 14px;
  339. opacity: .5;
  340. text-decoration: none;
  341. }
  342. .hidden {
  343. display: none!important;
  344. }
  345. .loadingtext {
  346. color: #FFF;
  347. text-align: center;
  348. }
  349. .noscript {
  350. color: #FFF;
  351. margin: 0;
  352. text-align: center;
  353. vertical-align: middle;
  354. }
  355. .previewtext {
  356. height: calc(100% - 110px);
  357. overflow: auto;
  358. position: absolute;
  359. top: 55px;
  360. width: 100%;
  361. }
  362. .previewtext > textarea {
  363. background: transparent none repeat scroll 0 0;
  364. border: 0 none;
  365. box-sizing: border-box;
  366. color: #c5c8c6!important;
  367. font-family: monospace!important;
  368. font-size: 13px;
  369. height: calc(100% - 5px);
  370. margin: 0;
  371. outline: medium none;
  372. padding: 6.5px 0 0 50px;
  373. position: absolute;
  374. resize: none;
  375. width: 100%;
  376. }
  377. .previewtext code {
  378. background: none;
  379. margin: 0;
  380. overflow: visible;
  381. }
  382. .previewtext pre {
  383. margin: 0;
  384. padding-left: 50px;
  385. }
  386. .topbar {
  387. box-sizing: border-box;
  388. display: flex;
  389. height: 40px;
  390. padding: 5px;
  391. position: fixed;
  392. width: 100%;
  393. z-index: 6;
  394. }
  395. .viewcontent {
  396. height: 100%;
  397. width: 100%;
  398. }
  399. .viewswitcher {
  400. -webkit-flex-shrink: 0;
  401. display: flex;
  402. flex-shrink: 0;
  403. margin-left: auto;
  404. vertical-align: top;
  405. white-space: nowrap;
  406. z-index: 6;
  407. }
  408. .centertext {
  409. text-align: center;
  410. }
  411. .centerable {
  412. -webkit-transform: translateY(-50%);
  413. margin: 0 auto;
  414. position: relative;
  415. top: 50%;
  416. transform: translateY(-50%);
  417. }
  418. .deleted {
  419. position: fixed;
  420. top: 50%;
  421. left: 50%;
  422. margin-right: -50%;
  423. padding: 10px;
  424. transform: translate(-50%, -50%);
  425. z-index: 1;
  426. background-color: #1d1f21;
  427. color: #FFF;
  428. }
  429. body {
  430. background-color: #1d1f21;
  431. /*background-image: url('safesharelogo.png');
  432. -webkit-background-size: contain;
  433. -moz-background-size: contain;
  434. -o-background-size: contain;
  435. background-size: contain;
  436. background-repeat: no-repeat;
  437. background-position : 50%, 50%;*/
  438. overflow: auto;
  439. }
  440. body,html {
  441. font-family: Sans-Serif;
  442. height: 100%;
  443. margin: 0;
  444. overflow: auto;
  445. padding: 0;
  446. }
  447. .right {
  448. float: right;
  449. }