style.css 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* ------------------
  2. HOME
  3. ------------------ */
  4. #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. 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. div#dropzone:hover {
  45. background-color: #ff3860;
  46. border-color: #ff3860;
  47. color: #fff;
  48. }
  49. div#uploads, p#tokenContainer, a#panel { display: none; }
  50. img.logo { height: 200px; margin-top: 20px; }
  51. .dz-preview .dz-details { display: flex; }
  52. .dz-preview .dz-details .dz-size, .dz-preview .dz-details .dz-filename { flex: 1 }
  53. .dz-preview img, .dz-preview .dz-success-mark, .dz-preview .dz-error-mark { display: none }
  54. @keyframes floatUp {
  55. 0% {
  56. opacity: 0;
  57. 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);
  58. -webkit-transform: scale(0.86);
  59. transform: scale(0.86);
  60. }
  61. 25% { opacity: 100; }
  62. 67% {
  63. 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);
  64. -webkit-transform: scale(1);
  65. transform: scale(1);
  66. }
  67. 100% {
  68. 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);
  69. -webkit-transform: scale(1);
  70. transform: scale(1);
  71. }
  72. }
  73. /* ------------------
  74. PANEL
  75. ------------------ */
  76. section#dashboard { display: none }
  77. section#auth input { background: rgba(0, 0, 0, 0); }
  78. section#auth input, section#auth a {
  79. border-left: 0px;
  80. border-top: 0px;
  81. border-right: 0px;
  82. border-radius: 0px;
  83. box-shadow: 0 0 0;
  84. }
  85. section#dashboard .table { font-size: 12px }