style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* ------------------
  2. HOME
  3. ------------------ */
  4. section#home #b {
  5. -webkit-animation-delay: 0.5s;
  6. animation-delay: 0.5s;
  7. -webkit-animation-duration: 1.5s;
  8. animation-duration: 1.5s;
  9. -webkit-animation-fill-mode: both;
  10. animation-fill-mode: both;
  11. -webkit-animation-name: floatUp;
  12. animation-name: floatUp;
  13. -webkit-animation-timing-function: cubic-bezier(0, 0.71, 0.29, 1);
  14. animation-timing-function: cubic-bezier(0, 0.71, 0.29, 1);
  15. border-radius: 24px;
  16. display: inline-block;
  17. height: 240px;
  18. margin-bottom: 40px;
  19. position: relative;
  20. vertical-align: top;
  21. width: 240px;
  22. box-shadow: 0 20px 60px rgba(10, 10, 10, 0.05), 0 5px 10px rgba(10, 10, 10, 0.1), 0 1px 1px rgba(10, 10, 10, 0.2);
  23. }
  24. section#home div#dropzone {
  25. border: 1px solid #dbdbdb;
  26. background-color: rgba(0, 0, 0, 0);
  27. border-color: #ff3860;
  28. color: #ff3860;
  29. display: none;
  30. width: 100%;
  31. border-radius: 3px;
  32. box-shadow: none;
  33. height: 2.5em;
  34. -webkit-box-align: center;
  35. -ms-flex-align: center;
  36. align-items: center;
  37. user-select: none;
  38. justify-content: center;
  39. padding-left: .75em;
  40. padding-right: .75em;
  41. text-align: center;
  42. cursor: pointer;
  43. }
  44. section#home div#uploads, section#home p#tokenContainer, section#home a#panel { display: none; }
  45. section#home div#dropzone:hover { background-color: #ff3860; border-color: #ff3860; color: #fff; }
  46. section#home h3#maxFileSize { font-size: 14px; }
  47. section#home h3#links span { padding-left: 5px; padding-right: 5px; }
  48. section#home img.logo { height: 200px; margin-top: 20px; }
  49. section#home .dz-preview .dz-details { display: flex; }
  50. section#home .dz-preview .dz-details .dz-size, section#home .dz-preview .dz-details .dz-filename { flex: 1; }
  51. section#home .dz-preview img, section#home .dz-preview .dz-success-mark, section#home .dz-preview .dz-error-mark { display: none; }
  52. @keyframes floatUp {
  53. 0% {
  54. opacity: 0;
  55. box-shadow: 0 0 0 rgba(10, 10, 10, 0), 0 0 0 rgba(10, 10, 10, 0), 0 0 0 rgba(10, 10, 10, 0);
  56. -webkit-transform: scale(0.86);
  57. transform: scale(0.86);
  58. }
  59. 25% { opacity: 100; }
  60. 67% {
  61. box-shadow: 0 0 0 rgba(10, 10, 10, 0), 0 5px 10px rgba(10, 10, 10, 0.1), 0 1px 1px rgba(10, 10, 10, 0.2);
  62. -webkit-transform: scale(1);
  63. transform: scale(1);
  64. }
  65. 100% {
  66. box-shadow: 0 20px 60px rgba(10, 10, 10, 0.05), 0 5px 10px rgba(10, 10, 10, 0.1), 0 1px 1px rgba(10, 10, 10, 0.2);
  67. -webkit-transform: scale(1);
  68. transform: scale(1);
  69. }
  70. }
  71. /* ------------------
  72. PANEL
  73. ------------------ */
  74. section#auth, section#dashboard { display: none }
  75. section#auth input { background: rgba(0, 0, 0, 0); }
  76. section#auth input, section#auth a {
  77. border-left: 0px;
  78. border-top: 0px;
  79. border-right: 0px;
  80. border-radius: 0px;
  81. box-shadow: 0 0 0;
  82. }
  83. section#dashboard .table { font-size: 12px }