app.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. body {
  2. display: flex;
  3. min-height: 100vh;
  4. flex-direction: column;
  5. background-color: rgb(245, 245, 245);
  6. }
  7. main {
  8. flex: 1 0 auto;
  9. }
  10. main h4.thin{
  11. margin-left: 10px;
  12. }
  13. main p.flow-text{
  14. margin-left: 10px;
  15. }
  16. ::-webkit-scrollbar{
  17. width: 8px;
  18. }
  19. ::-webkit-scrollbar-track{
  20. border-radius: 10px;
  21. }
  22. ::-webkit-scrollbar-thumb {
  23. border-radius: 10px;
  24. background-color: white;
  25. }
  26. textarea{
  27. color: white;
  28. }
  29. .brand-logo {
  30. margin-left: 10px;
  31. font-weight: 300 !important;
  32. }
  33. .feedback-btn{
  34. margin-left: 10px
  35. }
  36. .scroll-fix{
  37. margin-right: 20px;
  38. }
  39. .avatar{
  40. width: auto;
  41. height: auto;
  42. }
  43. .contact-details{
  44. margin-bottom: 5px;
  45. }
  46. .contact-details .material-icons{
  47. float: left;
  48. }
  49. .user-num{
  50. font-size: 1.6em !important;
  51. }
  52. .card i{
  53. line-height: inherit;
  54. float: right;
  55. }
  56. .card-content div{
  57. float: right;
  58. line-height: 2;
  59. }
  60. .register{
  61. margin: 10px 0 0 0px;
  62. }
  63. .social{
  64. margin: 0px 0 10px 0px;
  65. width: 155px;
  66. }
  67. .login-btn{
  68. margin: 10px 0 0 10px;
  69. }
  70. .upvote{
  71. float: right;
  72. color: #00C853;
  73. cursor: pointer;
  74. line-height: initial !important;
  75. }
  76. .upvote-text{
  77. display: inline;
  78. float: right;
  79. font-size: 1.5em;
  80. margin-top: -3px;
  81. margin-right: 10px;
  82. color: white;
  83. }
  84. .float-btn{
  85. position: initial;
  86. float: right;
  87. margin-top: -3em;
  88. margin-right: -2em;
  89. }
  90. .character-counter{
  91. color: white;
  92. }
  93. .fixed-action-btn.horizontal ul{
  94. right: 45px;
  95. }
  96. .musare {
  97. background-color: rgb(107, 197, 164) !important;
  98. }
  99. .range-field > input[type="range"] {
  100. border-color: #C2C0C2;
  101. border-right: 0;
  102. border-left: 0;
  103. }
  104. .table-right-td {
  105. text-align: right;
  106. }
  107. .table-right-th {
  108. width: 1px;
  109. }
  110. .hide-preview {
  111. padding-bottom: 0 !important;
  112. }
  113. #song-preview {
  114. width: 210px;
  115. height: 210px;
  116. min-height: 210px;
  117. min-width: 210px;
  118. max-height: 210px;
  119. max-width: 210px;
  120. }
  121. #previewPlayerContainer {
  122. margin-bottom: 20px;
  123. }
  124. .seeker-bar {
  125. top: 0;
  126. left: 0;
  127. bottom: 0;
  128. position: absolute;
  129. }
  130. .seeker-bar-container {
  131. position: relative;
  132. height: 5px;
  133. display: block;
  134. width: 100%;
  135. overflow: hidden;
  136. }
  137. #preview-time {
  138. margin-top: -9px;
  139. }
  140. #desc_text{
  141. color: black;
  142. }
  143. .hack-container{
  144. margin-left: 0;
  145. margin-right: 0;
  146. /* Weird hack... No clue why this is needed but it is.*/
  147. }
  148. #room-content {
  149. padding-top: 15px;
  150. }
  151. #thumbs_up, #thumbs_down {
  152. color: white;
  153. cursor: pointer;
  154. }
  155. #thumbs_up:hover, .liked {
  156. color: #00bfa5 !important;
  157. }
  158. #thumbs_down:hover, .disliked {
  159. color: #e53935 !important;
  160. }
  161. .feedback-message{
  162. word-wrap: break-word;
  163. }
  164. .brand-logo{
  165. font-weight:900;
  166. }
  167. .dropdown-content {
  168. background-color: #FFFFFF;
  169. margin: 0;
  170. display: none;
  171. min-width: 300px; /* Changed this to accomodate content width */
  172. margin-left: -1px; /* Add this to keep dropdown in line with edge of navbar */
  173. overflow: hidden; /* Changed this from overflow-y:auto; to overflow:hidden; */
  174. opacity: 0;
  175. position: absolute;
  176. white-space: nowrap;
  177. z-index: 1;
  178. will-change: width, height;
  179. }
  180. .video-import-thumbnail {
  181. position: absolute;
  182. height: 150px;
  183. width: 267px;
  184. overflow: hidden;
  185. left: 15px;
  186. display: inline-block;
  187. vertical-align: middle;
  188. }
  189. .youtube-search-result-li {
  190. height: 170px;
  191. }
  192. .video-import-text {
  193. margin-left: 225px !important;
  194. }
  195. .layer-content{
  196. position: fixed;
  197. width: 100%;
  198. height: 100%;
  199. background-color: rgba(0,0,0,0.8);
  200. text-align: center;
  201. color: white;
  202. }
  203. .layer-content a{
  204. background-color: #616161;
  205. }
  206. .album-art-row img{
  207. width: 10%;
  208. float: left;
  209. height: 10%;
  210. }
  211. .container {
  212. flex: 1 0 auto;
  213. }
  214. .alert{
  215. font-size: 1.3em;
  216. text-align: center;
  217. padding: 5px;
  218. margin: 0;
  219. background-color: #009C87 !important;
  220. color: white;
  221. }
  222. .alert i{
  223. vertical-align: middle;
  224. }
  225. .dropdown-content {
  226. z-index: 5 !important;
  227. }
  228. #add-song-button {
  229. margin-bottom: 100px;
  230. }