app.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270
  1. @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300);
  2. /*!
  3. * Slider for Bootstrap
  4. *
  5. * Copyright 2012 Stefan Petre
  6. * Licensed under the Apache License v2.0
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. */
  10. .slider {
  11. display: inline-block;
  12. vertical-align: middle;
  13. position: relative;
  14. }
  15. .slider.slider-horizontal {
  16. width: 210px;
  17. height: 20px;
  18. }
  19. .slider.slider-horizontal .slider-track {
  20. height: 10px;
  21. width: 100%;
  22. margin-top: -5px;
  23. top: 50%;
  24. left: 0;
  25. }
  26. .slider.slider-horizontal .slider-selection {
  27. height: 100%;
  28. top: 0;
  29. bottom: 0;
  30. }
  31. .slider.slider-horizontal .slider-handle {
  32. margin-left: -10px;
  33. margin-top: -5px;
  34. }
  35. .slider.slider-horizontal .slider-handle.triangle {
  36. border-width: 0 10px 10px 10px;
  37. width: 0;
  38. height: 0;
  39. border-bottom-color: #0480be;
  40. margin-top: 0;
  41. }
  42. .slider.slider-vertical {
  43. height: 210px;
  44. width: 20px;
  45. }
  46. .slider.slider-vertical .slider-track {
  47. width: 10px;
  48. height: 100%;
  49. margin-left: -5px;
  50. left: 50%;
  51. top: 0;
  52. }
  53. .slider.slider-vertical .slider-selection {
  54. width: 100%;
  55. left: 0;
  56. top: 0;
  57. bottom: 0;
  58. }
  59. .slider.slider-vertical .slider-handle {
  60. margin-left: -5px;
  61. margin-top: -10px;
  62. }
  63. .slider.slider-vertical .slider-handle.triangle {
  64. border-width: 10px 0 10px 10px;
  65. width: 1px;
  66. height: 1px;
  67. border-left-color: #0480be;
  68. margin-left: 0;
  69. }
  70. .slider input {
  71. display: none;
  72. }
  73. .slider .tooltip-inner {
  74. white-space: nowrap;
  75. }
  76. .slider-track {
  77. position: absolute;
  78. cursor: pointer;
  79. background-color: #f7f7f7;
  80. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  81. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  82. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  83. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  84. background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  85. background-repeat: repeat-x;
  86. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  87. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  88. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  89. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  90. -webkit-border-radius: 4px;
  91. -moz-border-radius: 4px;
  92. border-radius: 4px;
  93. }
  94. .slider-selection {
  95. position: absolute;
  96. background-color: #f7f7f7;
  97. background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
  98. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
  99. background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
  100. background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
  101. background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
  102. background-repeat: repeat-x;
  103. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  104. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  105. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  106. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  107. -webkit-box-sizing: border-box;
  108. -moz-box-sizing: border-box;
  109. box-sizing: border-box;
  110. -webkit-border-radius: 4px;
  111. -moz-border-radius: 4px;
  112. border-radius: 4px;
  113. }
  114. .slider-handle {
  115. position: absolute;
  116. width: 20px;
  117. height: 20px;
  118. background-color: #0e90d2;
  119. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  120. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  121. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  122. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  123. background-image: linear-gradient(to bottom, #149bdf, #0480be);
  124. background-repeat: repeat-x;
  125. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  126. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
  127. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
  128. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
  129. opacity: 0.8;
  130. border: 0px solid transparent;
  131. }
  132. .slider-handle.round {
  133. -webkit-border-radius: 20px;
  134. -moz-border-radius: 20px;
  135. border-radius: 20px;
  136. }
  137. .slider-handle.triangle {
  138. background: transparent none;
  139. }
  140. /*
  141. * End of slider css
  142. */
  143. * {
  144. box-sizing: border-box;
  145. margin: 0;
  146. padding: 0;
  147. font-weight: 300;
  148. }
  149. html, body {
  150. height: 100%;
  151. background: #50a3a2;
  152. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  153. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  154. }
  155. body {
  156. font-family: 'Source Sans Pro', sans-serif;
  157. font-weight: 300;
  158. }
  159. body ::-webkit-input-placeholder {
  160. /* WebKit browsers */
  161. font-family: 'Source Sans Pro', sans-serif;
  162. font-weight: 300;
  163. }
  164. body :-moz-placeholder {
  165. /* Mozilla Firefox 4 to 18 */
  166. font-family: 'Source Sans Pro', sans-serif;
  167. opacity: 1;
  168. font-weight: 300;
  169. }
  170. body ::-moz-placeholder {
  171. /* Mozilla Firefox 19+ */
  172. font-family: 'Source Sans Pro', sans-serif;
  173. opacity: 1;
  174. font-weight: 300;
  175. }
  176. body :-ms-input-placeholder {
  177. /* Internet Explorer 10+ */
  178. font-family: 'Source Sans Pro', sans-serif;
  179. font-weight: 300;
  180. }
  181. ul {
  182. list-style: none;
  183. }
  184. .navbar {
  185. background-color: transparent;
  186. border: none;
  187. }
  188. .navbar a {
  189. color: white !important;
  190. font-size: 1.3em;
  191. }
  192. .navbar-default .navbar-nav > .active > a,
  193. .navbar-default .navbar-nav > .active > a:hover,
  194. .navbar-default .navbar-nav > .active > a:focus {
  195. background-color: transparent;
  196. font-weight: 900;
  197. }
  198. .homepage {
  199. background: #50a3a2;
  200. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  201. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  202. /*top: 20%;*/
  203. width: 100%;
  204. overflow-x: hidden;
  205. overflow-y: auto;
  206. /*padding-bottom: 60px;*/
  207. min-height: 100%;
  208. height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
  209. height: 100%;
  210. margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
  211. }
  212. .landing {
  213. background: #50a3a2;
  214. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  215. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  216. position: absolute;
  217. /*top: 20%;*/
  218. left: 0;
  219. width: 100%;
  220. height: 100%; /*400px*/
  221. /*margin-top: -200px;*/
  222. overflow-x: hidden;
  223. overflow-y: auto;
  224. }
  225. .admin-container {
  226. background-color: rgb(102, 205, 170);
  227. color: white;
  228. overflow-y: scroll;
  229. margin-top: 20px;
  230. }
  231. .admin-container h1 {
  232. text-align: center;
  233. margin: 0;
  234. }
  235. .admin-container p {
  236. font-size: 22px;
  237. }
  238. .admin-container a {
  239. color: white;
  240. font-size: 16px;
  241. }
  242. .container {
  243. max-width: 600px;
  244. margin: 0 auto;
  245. padding: 80px 0;
  246. height: 400px;
  247. text-align: center;
  248. }
  249. .container h1 {
  250. font-size: 40px;
  251. color: white;
  252. -webkit-transition-duration: 1s;
  253. transition-duration: 1s;
  254. font-weight: 200;
  255. }
  256. .container p {
  257. font-size: 10px;
  258. color: white;
  259. -webkit-transition-duration: 1s;
  260. transition-duration: 1s;
  261. font-weight: 200;
  262. }
  263. form {
  264. padding: 20px 0;
  265. position: relative;
  266. z-index: 2;
  267. }
  268. form input, .croom, .calert {
  269. -webkit-appearance: none;
  270. -moz-appearance: none;
  271. appearance: none;
  272. outline: 0;
  273. border: 1px solid rgba(255, 255, 255, 0.4);
  274. background-color: rgba(255, 255, 255, 0.2);
  275. width: 304px;
  276. border-radius: 3px;
  277. padding: 10px 15px;
  278. margin: 0 auto 10px auto;
  279. display: block;
  280. text-align: center;
  281. font-size: 18px;
  282. color: white;
  283. -webkit-transition-duration: 0.25s;
  284. transition-duration: 0.25s;
  285. font-weight: 300;
  286. }
  287. form input:hover {
  288. background-color: rgba(255, 255, 255, 0.4);
  289. }
  290. form input:focus {
  291. /*opacity: 0.4;*/
  292. width: 354px;
  293. color: white;
  294. }
  295. .g-recaptcha {
  296. -webkit-appearance: none;
  297. -moz-appearance: none;
  298. appearance: none;
  299. outline: 0;
  300. width: 304px;
  301. margin: 0 auto 10px auto;
  302. display: block;
  303. text-align: center;
  304. font-size: 18px;
  305. color: white;
  306. -webkit-transition-duration: 0.25s;
  307. transition-duration: 0.25s;
  308. font-weight: 300;
  309. }
  310. form button {
  311. -webkit-appearance: none;
  312. -moz-appearance: none;
  313. appearance: none;
  314. outline: 0;
  315. background-color: white;
  316. border: 0;
  317. padding: 10px 15px;
  318. color: #53e3a6;
  319. border-radius: 3px;
  320. width: 304px;
  321. cursor: pointer;
  322. font-size: 18px;
  323. -webkit-transition-duration: 0.25s;
  324. transition-duration: 0.25s;
  325. }
  326. ::-webkit-input-placeholder {
  327. color: white;
  328. }
  329. ::-moz-placeholder {
  330. /* Firefox 19+ */
  331. color: white;
  332. }
  333. :-ms-input-placeholder {
  334. color: white;
  335. }
  336. form button:hover {
  337. background-color: #f5f7f9;
  338. }
  339. .bg-bubbles {
  340. top: 0;
  341. left: 0;
  342. width: 100%;
  343. height: 100%;
  344. position: absolute;
  345. z-index: 1;
  346. margin: 0px;
  347. pointer-events: none;
  348. }
  349. .bg-bubbles li {
  350. position: absolute;
  351. list-style: none;
  352. display: block;
  353. width: 40px;
  354. height: 40px;
  355. border-radius: 100px;
  356. background-color: rgba(255, 255, 255, 0.15);
  357. bottom: 0px;
  358. -webkit-animation: square 25s infinite;
  359. animation: square 25s infinite;
  360. -webkit-transition-timing-function: linear;
  361. transition-timing-function: linear;
  362. }
  363. .bg-bubbles li:nth-child(1) {
  364. left: 10%;
  365. }
  366. .bg-bubbles li:nth-child(2) {
  367. left: 20%;
  368. width: 80px;
  369. height: 80px;
  370. -webkit-animation-delay: 2s;
  371. animation-delay: 2s;
  372. -webkit-animation-duration: 17s;
  373. animation-duration: 17s;
  374. }
  375. .bg-bubbles li:nth-child(3) {
  376. left: 25%;
  377. -webkit-animation-delay: 4s;
  378. animation-delay: 4s;
  379. }
  380. .bg-bubbles li:nth-child(4) {
  381. left: 40%;
  382. width: 60px;
  383. height: 60px;
  384. -webkit-animation-duration: 22s;
  385. animation-duration: 22s;
  386. background-color: rgba(255, 255, 255, 0.25);
  387. }
  388. .bg-bubbles li:nth-child(5) {
  389. left: 70%;
  390. }
  391. .bg-bubbles li:nth-child(6) {
  392. left: 80%;
  393. width: 120px;
  394. height: 120px;
  395. -webkit-animation-delay: 3s;
  396. animation-delay: 3s;
  397. background-color: rgba(255, 255, 255, 0.2);
  398. }
  399. .bg-bubbles li:nth-child(7) {
  400. left: 32%;
  401. width: 160px;
  402. height: 160px;
  403. -webkit-animation-delay: 7s;
  404. animation-delay: 7s;
  405. }
  406. .bg-bubbles li:nth-child(8) {
  407. left: 55%;
  408. width: 20px;
  409. height: 20px;
  410. -webkit-animation-delay: 15s;
  411. animation-delay: 15s;
  412. -webkit-animation-duration: 40s;
  413. animation-duration: 40s;
  414. }
  415. .bg-bubbles li:nth-child(9) {
  416. left: 25%;
  417. width: 10px;
  418. height: 10px;
  419. -webkit-animation-delay: 2s;
  420. animation-delay: 2s;
  421. -webkit-animation-duration: 40s;
  422. animation-duration: 40s;
  423. background-color: rgba(255, 255, 255, 0.3);
  424. }
  425. .bg-bubbles li:nth-child(10) {
  426. left: 80%;
  427. width: 160px;
  428. height: 160px;
  429. -webkit-animation-delay: 11s;
  430. animation-delay: 11s;
  431. }
  432. /* Tablet view fix */
  433. @media (max-width: 768px){
  434. body{
  435. height: auto !important;
  436. }
  437. .bg-bubbles li:nth-child(10) {
  438. display: none;
  439. }
  440. #song-media{
  441. margin-left: 0 !important;
  442. }
  443. #song-info{
  444. margin: 15px auto;
  445. width: 200px;
  446. }
  447. #settings{
  448. margin: 0 auto !important;
  449. margin-bottom: 10px !important;
  450. }
  451. #voting{
  452. margin: 0 auto !important;
  453. width: 300px !important;
  454. margin-bottom: 100px !important;
  455. }
  456. #side-panel{
  457. display: none;
  458. }
  459. }
  460. /**/
  461. @-webkit-keyframes square {
  462. 0% {
  463. -webkit-transform: translateY(0);
  464. transform: translateY(0);
  465. }
  466. 100% {
  467. -webkit-transform: translateY(-700px) rotate(600deg);
  468. transform: translateY(-700px) rotate(600deg);
  469. }
  470. }
  471. @keyframes square {
  472. 0% {
  473. -webkit-transform: translateY(0);
  474. transform: translateY(0);
  475. }
  476. 100% {
  477. -webkit-transform: translateY(-700px) rotate(600deg);
  478. transform: translateY(-700px) rotate(600deg);
  479. }
  480. }
  481. .fa-github {
  482. margin-top: 3px;
  483. }
  484. #github-login {
  485. background-color: #999;
  486. margin-bottom: 100px;
  487. }
  488. .btn-social {
  489. -webkit-appearance: none;
  490. -moz-appearance: none;
  491. appearance: none;
  492. outline: 0;
  493. border: 0;
  494. padding: 10px 15px;
  495. border-radius: 3px;
  496. width: 304px;
  497. cursor: pointer;
  498. font-size: 18px;
  499. color: #fff;
  500. }
  501. footer {
  502. text-align: center;
  503. width: 100%;
  504. height: 75px;
  505. margin-top: 75px;
  506. color: white;
  507. padding-top: 5px;
  508. }
  509. .push {
  510. height: 75px; /* .push must be the same height as .footer */
  511. }
  512. footer a {
  513. color: white;
  514. }
  515. footer a:hover {
  516. color: white;
  517. }
  518. footer p {
  519. margin: 0 !important;
  520. }
  521. footer .fa {
  522. font-size: 2em;
  523. }
  524. .button-nowidth {
  525. -webkit-appearance: none;
  526. -moz-appearance: none;
  527. appearance: none;
  528. outline: 0;
  529. background-color: white;
  530. border: 0;
  531. padding: 10px 15px;
  532. color: #53e3a6;
  533. border-radius: 3px;
  534. cursor: pointer;
  535. font-size: 18px;
  536. -webkit-transition-duration: 0.25s;
  537. transition-duration: 0.25s;
  538. }
  539. .button-nowidth:hover {
  540. background-color: #f5f7f9;
  541. }
  542. .button {
  543. -webkit-appearance: none;
  544. -moz-appearance: none;
  545. appearance: none;
  546. outline: 0;
  547. background-color: white;
  548. border: 0;
  549. padding: 10px 15px;
  550. color: #53e3a6;
  551. border-radius: 3px;
  552. width: 304px;
  553. cursor: pointer;
  554. font-size: 18px;
  555. -webkit-transition-duration: 0.25s;
  556. transition-duration: 0.25s;
  557. }
  558. .button:hover {
  559. background-color: #f5f7f9;
  560. }
  561. .station {
  562. background-color: rgba(102, 205, 170, 0.7);
  563. height: 300px;
  564. width: 300px;
  565. border-radius: 100%;
  566. text-align: center;
  567. color: white;
  568. font-family: Sans-serif;
  569. /*float: left;*/
  570. margin-right: auto;
  571. margin-left: auto;
  572. position: relative;
  573. }
  574. .station > h3 {
  575. line-height: 200px;
  576. font-size: 42px;
  577. }
  578. .station > h5 {
  579. margin-top: -40px;
  580. font-size: 15px;
  581. }
  582. .room-name {
  583. font-size: 3.5em;
  584. color: white;
  585. font-weight: 600;
  586. text-align: center;
  587. }
  588. .room-title {
  589. font-size: 2.5em;
  590. color: white;
  591. font-weight: 600;
  592. }
  593. .room-artist {
  594. font-size: 1.5em;
  595. color: white;
  596. }
  597. #seeker-bar {
  598. background-color: black;
  599. width: 0;
  600. height: 10px;
  601. clear: both;
  602. background-color: rgba(16, 140, 146, 0.8);
  603. }
  604. .song-input {
  605. -webkit-appearance: none;
  606. -moz-appearance: none;
  607. appearance: none;
  608. outline: 0;
  609. border: 1px solid rgba(255, 255, 255, 0.4);
  610. background-color: rgba(255, 255, 255, 0.2);
  611. width: 304px;
  612. border-radius: 3px;
  613. padding: 10px 15px;
  614. margin: 1em auto 10px auto;
  615. display: block;
  616. text-align: center;
  617. font-size: 18px;
  618. color: white;
  619. -webkit-transition-duration: 0.25s;
  620. transition-duration: 0.25s;
  621. font-weight: 300;
  622. }
  623. #chat-input {
  624. -webkit-appearance: none;
  625. -moz-appearance: none;
  626. appearance: none;
  627. outline: 0;
  628. border: 1px solid white;
  629. background-color: transparent;
  630. width: 90%;
  631. border-radius: 3px;
  632. padding: 10px 15px;
  633. margin: 1em auto 10px auto;
  634. text-align: left;
  635. font-size: 18px;
  636. color: white;
  637. -webkit-transition-duration: 0.25s;
  638. transition-duration: 0.25s;
  639. font-weight: 300;
  640. bottom: 0;
  641. }
  642. .song-input-select {
  643. -webkit-appearance: none;
  644. -moz-appearance: none;
  645. appearance: none;
  646. outline: 0;
  647. border: 1px solid rgba(255, 255, 255, 0.4);
  648. background-color: rgba(255, 255, 255, 0.2);
  649. width: 304px;
  650. border-radius: 3px;
  651. padding: 10px 15px;
  652. margin: 1em auto 10px auto;
  653. display: block;
  654. text-align: center;
  655. font-size: 18px;
  656. color: white;
  657. -webkit-transition-duration: 0.25s;
  658. transition-duration: 0.25s;
  659. font-weight: 300;
  660. }
  661. .song-input:hover {
  662. background-color: rgba(255, 255, 255, 0.4);
  663. }
  664. .song-input:focus {
  665. background-color: rgba(255, 255, 255, 0.4);
  666. }
  667. .song-input-select:hover {
  668. background-color: rgba(255, 255, 255, 0.4);
  669. }
  670. .song-input-select > option {
  671. color: black;
  672. background-color: rgba(255, 255, 255, 0.2);
  673. }
  674. .song-input:focus {
  675. width: 354px;
  676. color: white;
  677. }
  678. #search-song {
  679. display: block;
  680. margin: 0 auto;
  681. }
  682. #song-results {
  683. margin: 0 auto;
  684. color: white;
  685. margin-top: 1em;
  686. font-size: 1.5em;
  687. text-align: center;
  688. }
  689. #song-results p {
  690. margin: 0;
  691. padding: 5px;
  692. }
  693. #song-results p:hover {
  694. background-color: cadetblue;
  695. cursor: pointer;
  696. }
  697. #player {
  698. z-index: 10;
  699. }
  700. .hidden {
  701. visibility: hidden;
  702. }
  703. .footerButtons {
  704. background: none !important;
  705. border: none;
  706. padding: 0 !important;
  707. font: inherit;
  708. cursor: pointer;
  709. }
  710. .footerButtons:hover {
  711. background-color: #f5f7f9;
  712. }
  713. .song-img {
  714. width: 210px;
  715. height: 210px;
  716. }
  717. #seeker-container {
  718. width: calc(100% - 70px);
  719. margin-left: 30px;
  720. margin-right: 35px;
  721. overflow: hidden;
  722. }
  723. .pl-container {
  724. color: #53e3a6;
  725. background-color: white;
  726. border-radius: 3px;
  727. font-size: 18px;
  728. }
  729. .pl-container h4 {
  730. text-align: center;
  731. font-size: 40px;
  732. margin-bottom: 10px;
  733. }
  734. #spinner {
  735. font-size: 200px;
  736. color: bisque;
  737. }
  738. #spinner-container {
  739. margin-left: auto;
  740. margin-right: auto;
  741. width: 200px;
  742. margin-top: 10%;
  743. }
  744. #croom_container, #calert_container {
  745. margin-left: auto;
  746. margin-right: auto;
  747. margin-bottom: 10px;
  748. width: 304px !important;
  749. }
  750. .croom_label, .calert_label {
  751. color: white;
  752. }
  753. .croom, .calert {
  754. width: 304px !important;
  755. }
  756. #calert-priority > option {
  757. color: black;
  758. }
  759. #spinner {
  760. font-size: 200px;
  761. color: bisque;
  762. }
  763. #spinner-container {
  764. margin-left: auto;
  765. margin-right: auto;
  766. width: 200px;
  767. margin-top: 10%;
  768. }
  769. .modal-content {
  770. background-color: rgb(107, 197, 164);
  771. color: white;
  772. }
  773. .song-input-label {
  774. width: 100%;
  775. text-align: center;
  776. }
  777. .station_link {
  778. position: absolute;
  779. width: 100%;
  780. height: 100%;
  781. top: 0;
  782. left: 0;
  783. border-radius: 100%;
  784. }
  785. ul#playlist{
  786. margin-top: 50px;
  787. padding-left: 5px;
  788. }
  789. #playlist {
  790. margin: 0;
  791. color: white;
  792. font-size: 21px;
  793. max-height: 100%;
  794. overflow: auto;
  795. }
  796. #s2 {
  797. opacity: 0.66666666666666;
  798. }
  799. #s3 {
  800. opacity: 0.33333333333333;
  801. }
  802. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  803. display: block;
  804. margin: 0 auto;
  805. }
  806. .alert {
  807. text-align: center;
  808. }
  809. @media (max-width: 992px) {
  810. /* some think */
  811. #s3 {
  812. visibility: hidden;
  813. height: 0;
  814. }
  815. }
  816. @media (max-width: 768px) {
  817. /* some think */
  818. #s2 {
  819. visibility: hidden;
  820. height: 0;
  821. }
  822. }
  823. .column-small {
  824. width: 1px;
  825. }
  826. #return {
  827. display: block;
  828. margin: 0 auto 20px auto;
  829. }
  830. #song-media {
  831. margin-left: 10px;
  832. min-height: 460px;
  833. }
  834. #station-main {
  835. margin: 0;
  836. padding: 0;
  837. }
  838. #station-main nav {
  839. height: 50px;
  840. color: white;
  841. }
  842. /*Navbar HAMBURGUR*/
  843. .navbar-default .navbar-toggle .icon-bar{
  844. background-color: white;
  845. }
  846. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  847. background-color: transparent;
  848. }
  849. .navbar-default .navbar-toggle{
  850. background-color: transparent;
  851. }
  852. nav form{
  853. height: 0;
  854. }
  855. nav form input[type="image"]{
  856. width: 100px;
  857. background-color: transparent !important;
  858. border: none !important;
  859. margin-top: -15px;
  860. }
  861. #station-main nav i {
  862. margin-left: 1em;
  863. font-size: 2em;
  864. }
  865. #station-main nav h3 {
  866. display: inline-block;
  867. margin: 10px auto;
  868. margin-left: 50%;
  869. font-size: 2em;
  870. }
  871. #side-panel {
  872. height: 100vh;
  873. padding-left: 0;
  874. padding-right: 0;
  875. background-color: rgba(255, 255, 255, 0.4);
  876. }
  877. .embed-responsive {
  878. margin-top: 15px;
  879. }
  880. #header {
  881. margin-bottom: 0px;
  882. }
  883. .user-stat {
  884. font-size: 20px;
  885. color: #53e3a6;
  886. }
  887. #profile-name {
  888. font-size: 60px;
  889. color: #FFFFFF;
  890. margin-right: auto;
  891. margin-left: auto;
  892. text-align: center;
  893. }
  894. .admin-queue-panel:first-child {
  895. margin-top: 20px;
  896. }
  897. #songs {
  898. margin-top: -200px;
  899. margin-bottom: 20px;
  900. }
  901. .back {
  902. color: white;
  903. }
  904. .back:hover {
  905. color: white;
  906. }
  907. #volume-container {
  908. width: 172px; /*12.5 px each side*/
  909. float: right;
  910. height: 100%;
  911. }
  912. #volume-container > .slider {
  913. top: 40%;
  914. transform: translateY(-40%);
  915. padding-right: 12px;
  916. padding-left: 12px;
  917. margin-left: 12px;
  918. float: left;
  919. }
  920. #volume-container-admin {
  921. display: inline-block;
  922. width: 174px;
  923. margin-left: 10px;
  924. }
  925. #volume-container-admin > .slider {
  926. width: 150px !important;
  927. padding-left: 12px;
  928. padding-right: 12px;
  929. margin-left: 12px;
  930. }
  931. #volume-icon {
  932. /*margin-left: 320px !important;*/
  933. margin: 0 !important;
  934. float: left;
  935. margin-top: 7px !important;
  936. width: 12px;
  937. }
  938. #settings {
  939. margin-top: 10px;
  940. margin-left: 10px;
  941. }
  942. #voting {
  943. margin-top: 10px;
  944. margin-left: 10px;
  945. }
  946. #loginregistercontainer {
  947. margin-bottom: 100px;
  948. }
  949. .admin-header {
  950. color: white;
  951. }
  952. .admin-panel-body {
  953. max-height: 400px;
  954. overflow-y: scroll;
  955. overflow-x: hidden;
  956. }
  957. .terms, .privacy, .about {
  958. color: white;
  959. }
  960. .about a{
  961. color: white;
  962. }
  963. #play, #pause, #skip, #shuffle, #sync {
  964. cursor: pointer;
  965. }
  966. .delete-room {
  967. display: inline-block;
  968. cursor: pointer;
  969. }
  970. .delete-room:hover {
  971. color: red;
  972. }
  973. .panel-title {
  974. display: inline-block;
  975. }
  976. .report-layer-1 {
  977. margin-left: 19%;
  978. }
  979. .report-layer-2 {
  980. margin-left: 80px;
  981. }
  982. .other-textarea {
  983. outline: 0px;
  984. border: 1px solid rgba(255, 255, 255, 0.4);
  985. width: 304px;
  986. border-radius: 3px;
  987. padding: 10px 15px;
  988. margin: 5px -285.578px 10px 0px;
  989. display: block;
  990. text-align: left;
  991. font-size: 18px;
  992. color: white;
  993. transition-duration: 0.25s;
  994. font-weight: 300;
  995. background-color: rgba(255, 255, 255, 0.2);
  996. resize: vertical;
  997. }
  998. #room-header {
  999. position: absolute;
  1000. left: 0;
  1001. right: 0;
  1002. margin-left: auto;
  1003. margin-right: auto;
  1004. width: 100px;
  1005. }
  1006. #room-icons {
  1007. margin-top: 11px;
  1008. float: left;
  1009. }
  1010. #time-display {
  1011. color: white;
  1012. }
  1013. .action-button {
  1014. float: left;
  1015. width: 100%;
  1016. }
  1017. .chat-message {
  1018. font-size: 20px;
  1019. color: white;
  1020. }
  1021. #chat-ul {
  1022. overflow-y: hidden;
  1023. margin: 0;
  1024. padding: 0 15px 0 15px;
  1025. padding-bottom: 20px;
  1026. word-break: normal;
  1027. word-wrap: break-word;
  1028. }
  1029. .chat-message:nth-child(even) {
  1030. color: white;
  1031. }
  1032. .chat-message:nth-child(odd) {
  1033. color: darkblue;
  1034. }
  1035. #submit{
  1036. margin-left: 10px;
  1037. font-size: 1.5em;
  1038. padding-top: 10px;
  1039. cursor: pointer;
  1040. display: inline-block;
  1041. }
  1042. #chat-input-div {
  1043. width: 100%;
  1044. padding-left: 15px;
  1045. padding-right: 15px;
  1046. }
  1047. .rank-admin {
  1048. color: crimson;
  1049. font-size: 20px;
  1050. font-weight: bold;
  1051. }
  1052. .rank-mod {
  1053. color: darkgoldenrod;
  1054. font-size: 20px;
  1055. font-weight: bold;
  1056. }
  1057. .rank-default {
  1058. font-size: 0px;
  1059. }
  1060. .row {
  1061. margin: 0;
  1062. }
  1063. .sidebar-content {
  1064. height: calc(100% - 42px);
  1065. }
  1066. #chat {
  1067. height:100%;
  1068. overflow: auto;
  1069. }
  1070. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1071. background-color: transparent;
  1072. color:#ffffff;
  1073. }
  1074. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1075. background-color: transparent;
  1076. color:#ffffff;
  1077. }
  1078. #doorbell-button{
  1079. margin-right: 30em;
  1080. }
  1081. #search-playlist{
  1082. position: absolute;
  1083. outline: 0;
  1084. border: none;
  1085. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1086. background-color: #50a3a2;
  1087. width: 100%;
  1088. padding: 10px 15px;
  1089. margin: 0 auto 10px auto;
  1090. display: block;
  1091. text-align: center;
  1092. font-size: 18px;
  1093. color: white;
  1094. }
  1095. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1096. ::-webkit-scrollbar {
  1097. width: 8px;
  1098. }
  1099. ::-webkit-scrollbar-track {
  1100. border-radius: 10px;
  1101. }
  1102. ::-webkit-scrollbar-thumb {
  1103. border-radius: 10px;
  1104. background-color: white;
  1105. }
  1106. ::-webkit-scrollbar-track-piece {
  1107. background: #50a3a2;
  1108. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  1109. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  1110. }