style.css 2.0 KB

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