app.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124
  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;
  423. }
  424. #song-info{
  425. margin: 15px auto;
  426. width: 200px;
  427. }
  428. #settings{
  429. margin: 0 auto !important;
  430. width: 300px !important;
  431. margin-bottom: 100px !important;
  432. }
  433. #side-panel{
  434. display: none;
  435. }
  436. }
  437. /**/
  438. @-webkit-keyframes square {
  439. 0% {
  440. -webkit-transform: translateY(0);
  441. transform: translateY(0);
  442. }
  443. 100% {
  444. -webkit-transform: translateY(-700px) rotate(600deg);
  445. transform: translateY(-700px) rotate(600deg);
  446. }
  447. }
  448. @keyframes square {
  449. 0% {
  450. -webkit-transform: translateY(0);
  451. transform: translateY(0);
  452. }
  453. 100% {
  454. -webkit-transform: translateY(-700px) rotate(600deg);
  455. transform: translateY(-700px) rotate(600deg);
  456. }
  457. }
  458. .fa-github {
  459. margin-top: 3px;
  460. }
  461. #github-login {
  462. background-color: #999;
  463. margin-bottom: 100px;
  464. }
  465. .btn-social {
  466. -webkit-appearance: none;
  467. -moz-appearance: none;
  468. appearance: none;
  469. outline: 0;
  470. border: 0;
  471. padding: 10px 15px;
  472. border-radius: 3px;
  473. width: 304px;
  474. cursor: pointer;
  475. font-size: 18px;
  476. color: #fff;
  477. }
  478. footer {
  479. text-align: center;
  480. width: 100%;
  481. height: 75px;
  482. margin-top: 75px;
  483. color: white;
  484. padding-top: 5px;
  485. }
  486. .push {
  487. height: 75px; /* .push must be the same height as .footer */
  488. }
  489. footer a {
  490. color: white;
  491. }
  492. footer a:hover {
  493. color: white;
  494. }
  495. footer p {
  496. margin: 0 !important;
  497. }
  498. footer .fa {
  499. font-size: 2em;
  500. }
  501. .button-nowidth {
  502. -webkit-appearance: none;
  503. -moz-appearance: none;
  504. appearance: none;
  505. outline: 0;
  506. background-color: white;
  507. border: 0;
  508. padding: 10px 15px;
  509. color: #53e3a6;
  510. border-radius: 3px;
  511. cursor: pointer;
  512. font-size: 18px;
  513. -webkit-transition-duration: 0.25s;
  514. transition-duration: 0.25s;
  515. }
  516. .button-nowidth:hover {
  517. background-color: #f5f7f9;
  518. }
  519. .button {
  520. -webkit-appearance: none;
  521. -moz-appearance: none;
  522. appearance: none;
  523. outline: 0;
  524. background-color: white;
  525. border: 0;
  526. padding: 10px 15px;
  527. color: #53e3a6;
  528. border-radius: 3px;
  529. width: 304px;
  530. cursor: pointer;
  531. font-size: 18px;
  532. -webkit-transition-duration: 0.25s;
  533. transition-duration: 0.25s;
  534. }
  535. .button:hover {
  536. background-color: #f5f7f9;
  537. }
  538. .station {
  539. background-color: rgba(102, 205, 170, 0.7);
  540. height: 300px;
  541. width: 300px;
  542. border-radius: 100%;
  543. text-align: center;
  544. color: white;
  545. font-family: Sans-serif;
  546. /*float: left;*/
  547. margin-right: auto;
  548. margin-left: auto;
  549. position: relative;
  550. }
  551. .station > h3 {
  552. line-height: 200px;
  553. font-size: 42px;
  554. }
  555. .station > h5 {
  556. margin-top: -40px;
  557. font-size: 15px;
  558. }
  559. .room-name {
  560. font-size: 3.5em;
  561. color: white;
  562. font-weight: 600;
  563. text-align: center;
  564. }
  565. .room-title {
  566. font-size: 2.5em;
  567. color: white;
  568. font-weight: 600;
  569. }
  570. .room-artist {
  571. font-size: 1.5em;
  572. color: white;
  573. }
  574. #seeker-bar {
  575. background-color: black;
  576. width: 0;
  577. height: 10px;
  578. clear: both;
  579. background-color: rgba(16, 140, 146, 0.8);
  580. }
  581. .song-input {
  582. -webkit-appearance: none;
  583. -moz-appearance: none;
  584. appearance: none;
  585. outline: 0;
  586. border: 1px solid rgba(255, 255, 255, 0.4);
  587. background-color: rgba(255, 255, 255, 0.2);
  588. width: 304px;
  589. border-radius: 3px;
  590. padding: 10px 15px;
  591. margin: 1em auto 10px auto;
  592. display: block;
  593. text-align: center;
  594. font-size: 18px;
  595. color: white;
  596. -webkit-transition-duration: 0.25s;
  597. transition-duration: 0.25s;
  598. font-weight: 300;
  599. }
  600. #chat-input {
  601. -webkit-appearance: none;
  602. -moz-appearance: none;
  603. appearance: none;
  604. outline: 0;
  605. border: 1px solid white;
  606. background-color: transparent;
  607. width: 90%;
  608. border-radius: 3px;
  609. padding: 10px 15px;
  610. margin: 1em auto 10px auto;
  611. text-align: left;
  612. font-size: 18px;
  613. color: white;
  614. -webkit-transition-duration: 0.25s;
  615. transition-duration: 0.25s;
  616. font-weight: 300;
  617. bottom: 0;
  618. }
  619. .song-input-select {
  620. -webkit-appearance: none;
  621. -moz-appearance: none;
  622. appearance: none;
  623. outline: 0;
  624. border: 1px solid rgba(255, 255, 255, 0.4);
  625. background-color: rgba(255, 255, 255, 0.2);
  626. width: 304px;
  627. border-radius: 3px;
  628. padding: 10px 15px;
  629. margin: 1em auto 10px auto;
  630. display: block;
  631. text-align: center;
  632. font-size: 18px;
  633. color: white;
  634. -webkit-transition-duration: 0.25s;
  635. transition-duration: 0.25s;
  636. font-weight: 300;
  637. }
  638. .song-input:hover {
  639. background-color: rgba(255, 255, 255, 0.4);
  640. }
  641. .song-input:focus {
  642. background-color: rgba(255, 255, 255, 0.4);
  643. }
  644. .song-input-select:hover {
  645. background-color: rgba(255, 255, 255, 0.4);
  646. }
  647. .song-input-select > option {
  648. color: black;
  649. background-color: rgba(255, 255, 255, 0.2);
  650. }
  651. .song-input:focus {
  652. width: 354px;
  653. color: white;
  654. }
  655. #search-song {
  656. display: block;
  657. margin: 0 auto;
  658. }
  659. #song-results {
  660. margin: 0 auto;
  661. color: white;
  662. margin-top: 1em;
  663. font-size: 1.5em;
  664. text-align: center;
  665. }
  666. #song-results p {
  667. margin: 0;
  668. padding: 5px;
  669. }
  670. #song-results p:hover {
  671. background-color: cadetblue;
  672. cursor: pointer;
  673. }
  674. #player {
  675. }
  676. .hidden {
  677. visibility: hidden;
  678. }
  679. .footerButtons {
  680. background: none !important;
  681. border: none;
  682. padding: 0 !important;
  683. font: inherit;
  684. cursor: pointer;
  685. }
  686. .footerButtons:hover {
  687. background-color: #f5f7f9;
  688. }
  689. .song-img {
  690. width: 210px;
  691. height: 210px;
  692. }
  693. #seeker-container {
  694. width: calc(100% - 70px);
  695. margin-left: 30px;
  696. margin-right: 35px;
  697. overflow: hidden;
  698. }
  699. .pl-container {
  700. color: #53e3a6;
  701. background-color: white;
  702. border-radius: 3px;
  703. font-size: 18px;
  704. }
  705. .pl-container h4 {
  706. text-align: center;
  707. font-size: 40px;
  708. margin-bottom: 10px;
  709. }
  710. #spinner {
  711. font-size: 200px;
  712. color: bisque;
  713. }
  714. #spinner-container {
  715. margin-left: auto;
  716. margin-right: auto;
  717. width: 200px;
  718. margin-top: 10%;
  719. }
  720. #croom_container {
  721. margin-left: auto;
  722. margin-right: auto;
  723. margin-bottom: 10px;
  724. width: 304px !important;
  725. }
  726. .croom_label {
  727. color: white;
  728. }
  729. .croom {
  730. width: 304px !important;
  731. }
  732. #spinner {
  733. font-size: 200px;
  734. color: bisque;
  735. }
  736. #spinner-container {
  737. margin-left: auto;
  738. margin-right: auto;
  739. width: 200px;
  740. margin-top: 10%;
  741. }
  742. .modal-content {
  743. background-color: rgb(107, 197, 164);
  744. color: white;
  745. }
  746. .song-input-label {
  747. width: 100%;
  748. text-align: center;
  749. }
  750. .station_link {
  751. position: absolute;
  752. width: 100%;
  753. height: 100%;
  754. top: 0;
  755. left: 0;
  756. border-radius: 100%;
  757. }
  758. .playlist-title {
  759. text-align: center;
  760. color: white;
  761. font-weight: 600;
  762. }
  763. #playlist {
  764. margin: 0;
  765. padding: 0;
  766. color: white;
  767. font-size: 1.5em;
  768. max-height: 90%;
  769. overflow: auto;
  770. }
  771. #s2 {
  772. opacity: 0.66666666666666;
  773. }
  774. #s3 {
  775. opacity: 0.33333333333333;
  776. }
  777. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  778. display: block;
  779. margin: 0 auto;
  780. }
  781. .alert {
  782. text-align: center;
  783. }
  784. @media (max-width: 992px) {
  785. /* some think */
  786. #s3 {
  787. visibility: hidden;
  788. height: 0;
  789. }
  790. }
  791. @media (max-width: 768px) {
  792. /* some think */
  793. #s2 {
  794. visibility: hidden;
  795. height: 0;
  796. }
  797. }
  798. .column-small {
  799. width: 1px;
  800. }
  801. #return {
  802. display: block;
  803. margin: 0 auto 20px auto;
  804. }
  805. #song-media {
  806. margin-left: 10px;
  807. min-height: 460px;
  808. }
  809. #station-main {
  810. margin: 0;
  811. padding: 0;
  812. }
  813. #station-main nav {
  814. height: 50px;
  815. color: white;
  816. }
  817. /*Navbar HAMBURGUR*/
  818. .navbar-default .navbar-toggle .icon-bar{
  819. background-color: white;
  820. }
  821. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  822. background-color: transparent;
  823. }
  824. .navbar-default .navbar-toggle{
  825. background-color: transparent;
  826. }
  827. nav form{
  828. height: 0;
  829. }
  830. nav form input[type="image"]{
  831. width: 100px;
  832. background-color: transparent !important;
  833. border: none !important;
  834. margin-top: -15px;
  835. }
  836. #station-main nav i {
  837. margin-left: 1em;
  838. font-size: 2em;
  839. }
  840. #station-main nav h3 {
  841. display: inline-block;
  842. margin: 10px auto;
  843. margin-left: 50%;
  844. font-size: 2em;
  845. }
  846. #side-panel {
  847. height: 100vh;
  848. background-color: rgba(255, 255, 255, 0.4);
  849. }
  850. .embed-responsive {
  851. margin-top: 15px;
  852. }
  853. #header {
  854. margin-bottom: 0px;
  855. }
  856. .user-stat {
  857. font-size: 20px;
  858. color: #53e3a6;
  859. }
  860. #profile-name {
  861. font-size: 60px;
  862. color: #FFFFFF;
  863. margin-right: auto;
  864. margin-left: auto;
  865. text-align: center;
  866. }
  867. .admin-queue-panel:first-child {
  868. margin-top: 20px;
  869. }
  870. #songs {
  871. margin-top: -200px;
  872. margin-bottom: 20px;
  873. }
  874. .back {
  875. color: white;
  876. }
  877. .back:hover {
  878. color: white;
  879. }
  880. #volume-container {
  881. width: 172px; /*12.5 px each side*/
  882. float: right;
  883. height: 100%;
  884. }
  885. #volume-container > .slider {
  886. top: 40%;
  887. transform: translateY(-40%);
  888. padding-right: 12px;
  889. padding-left: 12px;
  890. margin-left: 12px;
  891. float: left;
  892. }
  893. #volume-container-admin {
  894. display: inline-block;
  895. width: 174px;
  896. margin-left: 10px;
  897. }
  898. #volume-container-admin > .slider {
  899. width: 150px !important;
  900. padding-left: 12px;
  901. padding-right: 12px;
  902. margin-left: 12px;
  903. }
  904. #volume-icon {
  905. /*margin-left: 320px !important;*/
  906. margin: 0 !important;
  907. float: left;
  908. margin-top: 7px !important;
  909. width: 12px;
  910. }
  911. #settings {
  912. margin-top: 10px;
  913. margin-left: 10px;
  914. }
  915. #loginregistercontainer {
  916. margin-bottom: 100px;
  917. }
  918. .admin-header {
  919. color: white;
  920. }
  921. .admin-panel-body {
  922. max-height: 400px;
  923. overflow-y: scroll;
  924. overflow-x: hidden;
  925. }
  926. .terms, .privacy, .about {
  927. color: white;
  928. }
  929. #play, #pause, #skip, #shuffle {
  930. cursor: pointer;
  931. }
  932. .delete-room {
  933. display: inline-block;
  934. cursor: pointer;
  935. }
  936. .delete-room:hover {
  937. color: red;
  938. }
  939. .panel-title {
  940. display: inline-block;
  941. }
  942. .report-layer-1 {
  943. margin-left: 19%;
  944. }
  945. .report-layer-2 {
  946. margin-left: 80px;
  947. }
  948. .other-textarea {
  949. outline: 0px;
  950. border: 1px solid rgba(255, 255, 255, 0.4);
  951. width: 304px;
  952. border-radius: 3px;
  953. padding: 10px 15px;
  954. margin: 5px -285.578px 10px 0px;
  955. display: block;
  956. text-align: left;
  957. font-size: 18px;
  958. color: white;
  959. transition-duration: 0.25s;
  960. font-weight: 300;
  961. background-color: rgba(255, 255, 255, 0.2);
  962. resize: vertical;
  963. }
  964. #room-header {
  965. position: absolute;
  966. left: 0;
  967. right: 0;
  968. margin-left: auto;
  969. margin-right: auto;
  970. width: 100px;
  971. }
  972. #room-icons {
  973. margin-top: 11px;
  974. float: left;
  975. }