app.css 22 KB

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