app.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  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. .range-field > input[type="range"] {
  118. border-color: #C2C0C2;
  119. border-right: 0;
  120. border-left: 0;
  121. }
  122. .table-right-td {
  123. text-align: right;
  124. }
  125. .table-right-th {
  126. width: 1px;
  127. }
  128. .hide-preview {
  129. padding-bottom: 0 !important;
  130. }
  131. #song-preview {
  132. width: 210px;
  133. height: 210px;
  134. min-height: 210px;
  135. min-width: 210px;
  136. max-height: 210px;
  137. max-width: 210px;
  138. }
  139. #previewPlayerContainer {
  140. margin-bottom: 20px;
  141. }
  142. .seeker-bar {
  143. top: 0;
  144. left: 0;
  145. bottom: 0;
  146. position: absolute;
  147. }
  148. .seeker-bar-container {
  149. position: relative;
  150. height: 5px;
  151. display: block;
  152. width: 100%;
  153. overflow: hidden;
  154. }
  155. #time-display{
  156. margin-top: 30px;
  157. float: right;
  158. }
  159. #preview-time {
  160. margin-top: -9px;
  161. }
  162. #desc_text{
  163. color: black;
  164. }
  165. .hack-container{
  166. margin-left: 0;
  167. margin-right: 0;
  168. /* Weird hack... No clue why this is needed but it is.*/
  169. }
  170. #room-content {
  171. padding-top: 15px;
  172. }
  173. #thumbs_up, #thumbs_down {
  174. color: white;
  175. cursor: pointer;
  176. }
  177. #thumbs_up:hover, .liked {
  178. color: #00bfa5 !important;
  179. }
  180. #thumbs_down:hover, .disliked {
  181. color: #e53935 !important;
  182. }
  183. .feedback-message{
  184. word-wrap: break-word;
  185. }
  186. .brand-logo{
  187. font-weight:900;
  188. }
  189. .dropdown-content {
  190. background-color: #FFFFFF;
  191. margin: 0;
  192. display: none;
  193. min-width: 300px; /* Changed this to accomodate content width */
  194. margin-left: -1px; /* Add this to keep dropdown in line with edge of navbar */
  195. overflow: hidden; /* Changed this from overflow-y:auto; to overflow:hidden; */
  196. opacity: 0;
  197. position: absolute;
  198. white-space: nowrap;
  199. z-index: 1;
  200. will-change: width, height;
  201. }
  202. .video-import-thumbnail {
  203. position: absolute;
  204. height: 150px;
  205. width: 267px;
  206. overflow: hidden;
  207. left: 15px;
  208. display: inline-block;
  209. vertical-align: middle;
  210. }
  211. .youtube-search-result-li {
  212. height: 170px;
  213. }
  214. .video-import-text {
  215. margin-left: 225px !important;
  216. }
  217. .layer-content{
  218. position: fixed;
  219. width: 100%;
  220. height: 100%;
  221. background-color: rgba(0,0,0,0.8);
  222. text-align: center;
  223. color: white;
  224. }
  225. .layer-content a{
  226. background-color: #616161;
  227. }
  228. .album-art-row img{
  229. width: 10%;
  230. float: left;
  231. height: 10%;
  232. }
  233. .container {
  234. flex: 1 0 auto;
  235. }
  236. .alert{
  237. font-size: 1.3em;
  238. text-align: center;
  239. padding: 5px;
  240. margin: 0;
  241. background-color: #009C87 !important;
  242. color: white;
  243. }
  244. .alert i{
  245. vertical-align: middle;
  246. }
  247. #sidenav-overlay{
  248. display: none
  249. }
  250. .room-slideout{
  251. top: 64px;
  252. height: 100%;
  253. }
  254. .room-slideout h5{
  255. text-align: center;
  256. background-color: #028A77 !important;
  257. margin: 0;
  258. padding-top: 5px;
  259. padding-bottom: 5px;
  260. color: white;
  261. }
  262. .chat-ul{
  263. height: calc(100% - 164px);
  264. overflow-y: scroll;
  265. }
  266. .chat-message:hover{
  267. background-color: white !important;
  268. }
  269. .chat-message small{
  270. float: left;
  271. }
  272. .chat-message a{
  273. width: 50px;
  274. height: 50px;
  275. }
  276. #submit{
  277. color: white;
  278. height: 36px;
  279. line-height: 36px;
  280. margin: 0 10px !important;
  281. position: absolute;
  282. bottom: 72px;
  283. width: calc(100% - 20px);
  284. }
  285. #chat-input-div {
  286. position: absolute;
  287. bottom: 80px;
  288. width: 100%;
  289. }
  290. .vote_count {
  291. vertical-align: middle;
  292. }
  293. .dropdown-content {
  294. z-index: 5 !important;
  295. }
  296. #add-song-button {
  297. margin-bottom: 100px;
  298. }
  299. .profile-card ul{
  300. max-height: 365px;
  301. overflow-x: hidden;
  302. overflow-y: scroll;
  303. }
  304. .pl-item{
  305. pointer-events: none;
  306. }
  307. .pl-title{
  308. margin: 0;
  309. font-size: 1.4em;
  310. line-height: 25px;
  311. }
  312. .report-layer-2{
  313. margin-left: 38px;
  314. }
  315. #report_modal textarea{
  316. color: black;
  317. }
  318. /*Media queries stay on the bottom*/
  319. @media screen and (max-width: 990px){
  320. .card i{
  321. line-height: 1.8em;
  322. }
  323. }
  324. .rank-admin {
  325. color: red;
  326. margin-right: 3px;
  327. }
  328. .rank-moderator {
  329. color: green;
  330. margin-right: 3px;
  331. }
  332. .side-nav li {
  333. padding: 0 !important;
  334. }