style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. body {
  2. background: #232323;
  3. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;b3
  4. }
  5. ::-moz-progress-bar {
  6. background-color: #ec567c;
  7. }
  8. #directory-name {
  9. color: #ccc;
  10. padding: 1% 2%;
  11. background-color: #363636;
  12. border-radius: 3px;
  13. border: 1px solid #bbb;
  14. display: none;
  15. }
  16. .stylish-button {
  17. background-color: #ec567c;
  18. margin: 0;
  19. padding: 1% 2%;
  20. border: 0;
  21. border-radius: 3px;
  22. color: #fff;
  23. }
  24. #room {
  25. margin-top: 30px;
  26. color: #ccc;
  27. max-width: 650px;
  28. margin: 0 auto;
  29. margin-top: 30px;
  30. }
  31. #upload {
  32. text-align: center;
  33. }
  34. #create-room {
  35. text-align: center;
  36. }
  37. #create-room > input {
  38. background-color: #EF7896;
  39. border: 4px dashed #ccc;
  40. border-radius: 10px;
  41. font-size: 60px;
  42. margin-top: 20%;
  43. color: #ccc;
  44. padding: 20px;
  45. white-space: normal;
  46. }
  47. #file-list > ul {
  48. padding: 0;
  49. }
  50. #file-list > ul > li {
  51. position: relative;
  52. display: block;
  53. padding: 10px 15px;
  54. margin-bottom: -1px;
  55. background-color: #363636;
  56. border: 1px solid #bbb;
  57. width: 100%;
  58. width: -moz-available;
  59. width: -webkit-fill-available;
  60. word-wrap: break-word;
  61. }
  62. #file-list > ul > li:first-child {
  63. border-top-left-radius: 4px;
  64. border-top-right-radius: 4px;
  65. }
  66. #file-list > ul > li:last-child {
  67. margin-bottom: 0;
  68. border-bottom-right-radius: 4px;
  69. border-bottom-left-radius: 4px;
  70. }
  71. #file-list > ul > li > span.delete-button {
  72. float: right;
  73. }
  74. #upload-buttons {
  75. text-align: right;
  76. }
  77. label, input {
  78. font-size: inherit;
  79. padding: 0.2em;
  80. margin: 0.1em 0.2em;
  81. box-sizing: content-box;
  82. }
  83. #file-selector {
  84. width: 0.1px;
  85. height: 0.1px;
  86. opacity: 0;
  87. overflow: hidden;
  88. position: absolute;
  89. z-index: -1;
  90. }
  91. #progress-bar {
  92. background-color: #ccc;
  93. height: 25px;
  94. padding: 3px;
  95. width: 100%;
  96. width: -moz-available;
  97. width: -webkit-fill-available;
  98. margin-top: 10px;
  99. -webkit-border-radius: 5px;
  100. border-radius: 5px;
  101. -webkit-box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
  102. box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
  103. }
  104. #empty-room {
  105. text-align: center;
  106. }