app.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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. header{
  27. z-index: 2;
  28. }
  29. textarea{
  30. color: white;
  31. }
  32. hr{
  33. margin: 0;
  34. }
  35. .disabled{
  36. cursor: default;
  37. }
  38. .disabled:hover{
  39. background-color: inherit;
  40. }
  41. .container{
  42. transition: all 0.1s;
  43. }
  44. .brand-logo {
  45. margin-left: 10px;
  46. font-weight: 300 !important;
  47. }
  48. .feedback-btn{
  49. margin-left: 10px
  50. }
  51. .scroll-fix{
  52. margin-right: 20px;
  53. }
  54. .avatar{
  55. width: auto;
  56. height: auto;
  57. }
  58. .contact-details{
  59. margin-bottom: 5px;
  60. }
  61. .contact-details .material-icons{
  62. float: left;
  63. }
  64. .user-num{
  65. font-size: 1.6em !important;
  66. }
  67. .card i{
  68. line-height: inherit;
  69. float: right;
  70. }
  71. .card-content div{
  72. float: right;
  73. line-height: 2;
  74. }
  75. .acceptTerms{
  76. margin-left: 1px !important;
  77. }
  78. .register{
  79. margin: 10px 0 0 0px;
  80. }
  81. .social{
  82. margin: 0px 0 10px 0px;
  83. width: 155px;
  84. }
  85. .login-btn{
  86. margin: 10px 0 0 10px;
  87. }
  88. .upvote{
  89. float: right;
  90. color: #00C853;
  91. cursor: pointer;
  92. line-height: initial !important;
  93. }
  94. .upvote-text{
  95. display: inline;
  96. float: right;
  97. font-size: 1.5em;
  98. margin-top: -3px;
  99. margin-right: 10px;
  100. color: white;
  101. }
  102. .float-btn{
  103. position: initial;
  104. float: right;
  105. margin-top: -3em;
  106. margin-right: -2em;
  107. }
  108. .character-counter{
  109. color: white;
  110. }
  111. .fixed-action-btn.horizontal ul{
  112. right: 45px;
  113. }
  114. .musare {
  115. background-color: rgb(107, 197, 164) !important;
  116. }
  117. .musare-text {
  118. color: rgb(107, 197, 164) !important;
  119. }
  120. .range-field > input[type="range"] {
  121. border-color: #C2C0C2;
  122. border-right: 0;
  123. border-left: 0;
  124. }
  125. .table-right-td {
  126. text-align: right;
  127. }
  128. .table-right-th {
  129. width: 1px;
  130. }
  131. .hide-preview {
  132. padding-bottom: 0 !important;
  133. }
  134. #song-preview {
  135. width: 210px;
  136. height: 210px;
  137. min-height: 210px;
  138. min-width: 210px;
  139. max-height: 210px;
  140. max-width: 210px;
  141. }
  142. #previewPlayerContainer {
  143. margin-bottom: 20px;
  144. }
  145. .seeker-bar {
  146. top: 0;
  147. left: 0;
  148. bottom: 0;
  149. position: absolute;
  150. }
  151. .seeker-bar-container {
  152. position: relative;
  153. height: 5px;
  154. display: block;
  155. width: 100%;
  156. overflow: hidden;
  157. }
  158. #time-display{
  159. margin-top: 30px;
  160. float: right;
  161. }
  162. #preview-time {
  163. margin-top: -9px;
  164. }
  165. #desc_text{
  166. color: black;
  167. }
  168. .hack-container{
  169. margin-left: 0;
  170. margin-right: 0;
  171. /* Weird hack... No clue why this is needed but it is.*/
  172. }
  173. #room-content {
  174. padding-top: 15px;
  175. }
  176. #thumbs_up, #thumbs_down {
  177. color: white;
  178. cursor: pointer;
  179. }
  180. #thumbs_up:hover, .liked {
  181. color: #00bfa5 !important;
  182. }
  183. #thumbs_down:hover, .disliked {
  184. color: #e53935 !important;
  185. }
  186. .feedback-message{
  187. word-wrap: break-word;
  188. }
  189. .brand-logo{
  190. font-weight:900;
  191. }
  192. .dropdown-content {
  193. background-color: #FFFFFF;
  194. margin: 0;
  195. display: none;
  196. min-width: 300px; /* Changed this to accomodate content width */
  197. margin-left: -1px; /* Add this to keep dropdown in line with edge of navbar */
  198. overflow: hidden; /* Changed this from overflow-y:auto; to overflow:hidden; */
  199. opacity: 0;
  200. position: absolute;
  201. white-space: nowrap;
  202. z-index: 1;
  203. will-change: width, height;
  204. }
  205. .video-import-thumbnail {
  206. position: absolute;
  207. height: 150px;
  208. width: 267px;
  209. overflow: hidden;
  210. left: 15px;
  211. display: inline-block;
  212. vertical-align: middle;
  213. }
  214. .youtube-search-result-li {
  215. height: 170px;
  216. }
  217. .video-import-text {
  218. margin-left: 225px !important;
  219. }
  220. .layer-content{
  221. position: fixed;
  222. width: 100%;
  223. height: 100%;
  224. background-color: rgba(0,0,0,0.8);
  225. text-align: center;
  226. color: white;
  227. }
  228. .layer-content a{
  229. background-color: #616161;
  230. }
  231. .album-art-row img{
  232. width: 10%;
  233. float: left;
  234. height: 10%;
  235. }
  236. .container {
  237. flex: 1 0 auto;
  238. }
  239. .alert{
  240. font-size: 1.3em;
  241. text-align: center;
  242. padding: 5px;
  243. margin: 0;
  244. background-color: #009C87 !important;
  245. color: white;
  246. }
  247. .alert i{
  248. vertical-align: middle;
  249. }
  250. #sidenav-overlay{
  251. display: none
  252. }
  253. .room-slideout{
  254. top: 64px;
  255. height: 100%;
  256. }
  257. .room-slideout h5{
  258. text-align: center;
  259. background-color: #028A77 !important;
  260. margin: 0;
  261. padding-top: 5px;
  262. padding-bottom: 5px;
  263. color: white;
  264. }
  265. .chat-ul{
  266. height: calc(100% - 164px);
  267. overflow-y: scroll;
  268. }
  269. .chat-message:hover{
  270. background-color: white !important;
  271. }
  272. .chat-message small{
  273. float: left;
  274. }
  275. .chat-message a{
  276. width: 50px;
  277. height: 50px;
  278. }
  279. #submit{
  280. color: white;
  281. height: 36px;
  282. line-height: 36px;
  283. margin: 0 10px !important;
  284. position: absolute;
  285. bottom: 72px;
  286. width: calc(100% - 20px);
  287. }
  288. #chat-input-div {
  289. position: absolute;
  290. bottom: 80px;
  291. width: 100%;
  292. }
  293. .vote_count {
  294. vertical-align: middle;
  295. }
  296. .dropdown-content {
  297. z-index: 5 !important;
  298. }
  299. #add-song-button {
  300. margin-bottom: 100px;
  301. }
  302. .profile-card ul{
  303. max-height: 365px;
  304. overflow-x: hidden;
  305. overflow-y: scroll;
  306. }
  307. .pl-item{
  308. pointer-events: none;
  309. }
  310. .pl-title{
  311. margin: 0;
  312. font-size: 1.4em;
  313. line-height: 25px;
  314. }
  315. .report-layer-2{
  316. margin-left: 38px;
  317. }
  318. #report_modal textarea{
  319. color: black;
  320. }
  321. /*Media queries stay on the bottom*/
  322. @media screen and (max-width: 990px){
  323. .card i{
  324. line-height: 1.8em;
  325. }
  326. }
  327. .rank-admin {
  328. color: red;
  329. margin-right: 3px;
  330. }
  331. .rank-moderator {
  332. color: green;
  333. margin-right: 3px;
  334. }
  335. .chat-ul li {
  336. padding: 0 !important;
  337. }