A simple file sharing site with an easy to use API and online panel.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

155 lignes
2.4KB

  1. body {
  2. background-color: #060606;
  3. color: #D3D3D3;
  4. font-family: 'Roboto', sans-serif;
  5. font-size: 14px;
  6. height: 100%;
  7. line-height: 20px;
  8. margin: 0;
  9. padding-top: 20px;
  10. padding-bottom: 40px;
  11. }
  12. #container {
  13. max-width: 700px;
  14. text-align: center;
  15. display: flex;
  16. flex-direction: column;
  17. margin: auto;
  18. }
  19. a {
  20. color: #0078B4;
  21. text-decoration: none;
  22. transition: color 0.25s;
  23. }
  24. a:hover,
  25. a:focus,
  26. a:active {
  27. color: #005580;
  28. }
  29. h1 {
  30. font-size: 72px;
  31. font-weight: bold;
  32. }
  33. .upload {
  34. margin: 60px 0;
  35. }
  36. .btn {
  37. font-family: 'Roboto', sans-serif;
  38. background: #000000;
  39. border: 2px solid #2A9FD6;
  40. border-radius: 4px;
  41. color: #D3D3D3;
  42. cursor: pointer;
  43. display: inline-block;
  44. font-size: 24px;
  45. padding: 28px 48px;
  46. transition: background-color 0.25s, width 0.5s, height 0.5s;
  47. }
  48. .btn:hover {
  49. background-color: #2A9FD6;
  50. color: #FFFFFF;
  51. text-decoration: none;
  52. outline: none;
  53. }
  54. :focus {
  55. outline: none;
  56. }
  57. ::-moz-focus-inner {border: 0;}
  58. #upload-filelist {
  59. list-style-type: none;
  60. margin: 20px 50px;
  61. padding: 0;
  62. text-align: left;
  63. }
  64. #upload-filelist > li {
  65. margin-top: 5px;
  66. overflow: hidden;
  67. display: flex;
  68. }
  69. .list-name {
  70. margin-top: 6px;
  71. overflow: hidden;
  72. max-width: 70%;
  73. text-overflow: ellipsis;
  74. white-space: nowrap;
  75. }
  76. .list-url {
  77. font-family: 'Roboto Mono', monospace;
  78. margin-left: auto;
  79. }
  80. .list-progress {
  81. margin: 10px 30px 10px 30px;
  82. flex-grow: 2;
  83. }
  84. .list-url a {
  85. vertical-align: super;
  86. color: #5C5C5C;
  87. }
  88. .list-url a:hover {
  89. color: #D3D3D3;
  90. }
  91. .list-url-clipboard-btn {
  92. border: 2px solid #222222;
  93. height: 32px;
  94. margin-left: 5px;
  95. border-radius: 3px;
  96. cursor: pointer;
  97. background-color: #5C5C5C;
  98. transition: background-color 0.25s;
  99. }
  100. .list-url-clipboard-btn:hover,
  101. .list-url-clipboard-btn:focus {
  102. background-color: #ABABAB;
  103. outline: none;
  104. }
  105. .list-err {
  106. font-family: 'Roboto Mono', monospace;
  107. margin-left: auto;
  108. color: #ff6666;
  109. vertical-align: super;
  110. }
  111. nav > ul,
  112. nav a {
  113. color: #32809F;
  114. list-style: none;
  115. margin: 0;
  116. padding: 0;
  117. text-align: center;
  118. }
  119. nav > ul > li {
  120. display: inline-block;
  121. margin: 0;
  122. padding: 0;
  123. cursor: default;
  124. }
  125. nav > ul > li:after {
  126. content: "|";
  127. margin: 0 8px;
  128. opacity: 0.3;
  129. }
  130. nav > ul > li:last-child:after {
  131. content: "";
  132. margin: 0;
  133. }