app.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  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 { /* Firefox 19+ */
  314. color: white;
  315. }
  316. :-ms-input-placeholder {
  317. color: white;
  318. }
  319. form button:hover {
  320. background-color: #f5f7f9;
  321. }
  322. .bg-bubbles {
  323. top: 0;
  324. left: 0;
  325. width: 100%;
  326. height: 100%;
  327. position: absolute;
  328. z-index: 1;
  329. margin: 0px;
  330. pointer-events: none;
  331. }
  332. .bg-bubbles li {
  333. position: absolute;
  334. list-style: none;
  335. display: block;
  336. width: 40px;
  337. height: 40px;
  338. border-radius: 100px;
  339. background-color: rgba(255, 255, 255, 0.15);
  340. bottom: 0px;
  341. -webkit-animation: square 25s infinite;
  342. animation: square 25s infinite;
  343. -webkit-transition-timing-function: linear;
  344. transition-timing-function: linear;
  345. }
  346. .bg-bubbles li:nth-child(1) {
  347. left: 10%;
  348. }
  349. .bg-bubbles li:nth-child(2) {
  350. left: 20%;
  351. width: 80px;
  352. height: 80px;
  353. -webkit-animation-delay: 2s;
  354. animation-delay: 2s;
  355. -webkit-animation-duration: 17s;
  356. animation-duration: 17s;
  357. }
  358. .bg-bubbles li:nth-child(3) {
  359. left: 25%;
  360. -webkit-animation-delay: 4s;
  361. animation-delay: 4s;
  362. }
  363. .bg-bubbles li:nth-child(4) {
  364. left: 40%;
  365. width: 60px;
  366. height: 60px;
  367. -webkit-animation-duration: 22s;
  368. animation-duration: 22s;
  369. background-color: rgba(255, 255, 255, 0.25);
  370. }
  371. .bg-bubbles li:nth-child(5) {
  372. left: 70%;
  373. }
  374. .bg-bubbles li:nth-child(6) {
  375. left: 80%;
  376. width: 120px;
  377. height: 120px;
  378. -webkit-animation-delay: 3s;
  379. animation-delay: 3s;
  380. background-color: rgba(255, 255, 255, 0.2);
  381. }
  382. .bg-bubbles li:nth-child(7) {
  383. left: 32%;
  384. width: 160px;
  385. height: 160px;
  386. -webkit-animation-delay: 7s;
  387. animation-delay: 7s;
  388. }
  389. .bg-bubbles li:nth-child(8) {
  390. left: 55%;
  391. width: 20px;
  392. height: 20px;
  393. -webkit-animation-delay: 15s;
  394. animation-delay: 15s;
  395. -webkit-animation-duration: 40s;
  396. animation-duration: 40s;
  397. }
  398. .bg-bubbles li:nth-child(9) {
  399. left: 25%;
  400. width: 10px;
  401. height: 10px;
  402. -webkit-animation-delay: 2s;
  403. animation-delay: 2s;
  404. -webkit-animation-duration: 40s;
  405. animation-duration: 40s;
  406. background-color: rgba(255, 255, 255, 0.3);
  407. }
  408. .bg-bubbles li:nth-child(10) {
  409. left: 80%;
  410. width: 160px;
  411. height: 160px;
  412. -webkit-animation-delay: 11s;
  413. animation-delay: 11s;
  414. }
  415. @-webkit-keyframes square {
  416. 0% {
  417. -webkit-transform: translateY(0);
  418. transform: translateY(0);
  419. }
  420. 100% {
  421. -webkit-transform: translateY(-700px) rotate(600deg);
  422. transform: translateY(-700px) rotate(600deg);
  423. }
  424. }
  425. @keyframes square {
  426. 0% {
  427. -webkit-transform: translateY(0);
  428. transform: translateY(0);
  429. }
  430. 100% {
  431. -webkit-transform: translateY(-700px) rotate(600deg);
  432. transform: translateY(-700px) rotate(600deg);
  433. }
  434. }
  435. .fa-github{
  436. margin-top: 3px;
  437. }
  438. #github-login{
  439. background-color: #999;
  440. margin-bottom: 100px;
  441. }
  442. .btn-social{
  443. -webkit-appearance: none;
  444. -moz-appearance: none;
  445. appearance: none;
  446. outline: 0;
  447. border: 0;
  448. padding: 10px 15px;
  449. border-radius: 3px;
  450. width: 304px;
  451. cursor: pointer;
  452. font-size: 18px;
  453. color: #fff;
  454. }
  455. footer {
  456. text-align: center;
  457. width: 100%;
  458. height: 60px;
  459. margin-top: 75px;
  460. color: white;
  461. padding-top: 5px;
  462. }
  463. .push {
  464. height: 60px; /* .push must be the same height as .footer */
  465. }
  466. footer a{
  467. color: white;
  468. }
  469. footer a:hover{
  470. color: white;
  471. }
  472. footer p{
  473. margin: 0 !important;
  474. }
  475. footer .fa{
  476. font-size: 2em;
  477. }
  478. .button-nowidth {
  479. -webkit-appearance: none;
  480. -moz-appearance: none;
  481. appearance: none;
  482. outline: 0;
  483. background-color: white;
  484. border: 0;
  485. padding: 10px 15px;
  486. color: #53e3a6;
  487. border-radius: 3px;
  488. cursor: pointer;
  489. font-size: 18px;
  490. -webkit-transition-duration: 0.25s;
  491. transition-duration: 0.25s;
  492. }
  493. .button-nowidth:hover {
  494. background-color: #f5f7f9;
  495. }
  496. .button {
  497. -webkit-appearance: none;
  498. -moz-appearance: none;
  499. appearance: none;
  500. outline: 0;
  501. background-color: white;
  502. border: 0;
  503. padding: 10px 15px;
  504. color: #53e3a6;
  505. border-radius: 3px;
  506. width: 304px;
  507. cursor: pointer;
  508. font-size: 18px;
  509. -webkit-transition-duration: 0.25s;
  510. transition-duration: 0.25s;
  511. }
  512. .button:hover {
  513. background-color: #f5f7f9;
  514. }
  515. .station{
  516. background-color: rgba(102,205,170,0.7);
  517. height: 300px;
  518. width: 300px;
  519. border-radius: 100%;
  520. text-align: center;
  521. color: white;
  522. font-family: Sans-serif;
  523. /*float: left;*/
  524. margin-right: auto;
  525. margin-left: auto;
  526. position: relative;
  527. }
  528. .station > h3 {
  529. line-height: 200px;
  530. font-size: 42px;
  531. }
  532. .station > h5 {
  533. margin-top: -40px;
  534. font-size: 15px;
  535. }
  536. .room-name{
  537. font-size: 3.5em;
  538. color: white;
  539. font-weight: 600;
  540. text-align: center;
  541. }
  542. .room-title{
  543. font-size: 2.5em;
  544. color: white;
  545. font-weight: 600;
  546. margin-left: 35px;
  547. }
  548. .room-artist{
  549. font-size: 1.5em;
  550. color: white;
  551. margin-left: 35px;
  552. }
  553. #seeker-bar{
  554. background-color: black;
  555. width: 0;
  556. height: 10px;
  557. clear: both;
  558. background-color: rgba(16, 140, 146, 0.8);
  559. }
  560. .song-input{
  561. -webkit-appearance: none;
  562. -moz-appearance: none;
  563. appearance: none;
  564. outline: 0;
  565. border: 1px solid rgba(255, 255, 255, 0.4);
  566. background-color: rgba(255, 255, 255, 0.2);
  567. width: 304px;
  568. border-radius: 3px;
  569. padding: 10px 15px;
  570. margin: 1em auto 10px auto;
  571. display: block;
  572. text-align: center;
  573. font-size: 18px;
  574. color: white;
  575. -webkit-transition-duration: 0.25s;
  576. transition-duration: 0.25s;
  577. font-weight: 300;
  578. }
  579. #chat-input {
  580. -webkit-appearance: none;
  581. -moz-appearance: none;
  582. appearance: none;
  583. outline: 0;
  584. border: 1px solid white;
  585. background-color: transparent;
  586. width: 90%;
  587. border-radius: 3px;
  588. padding: 10px 15px;
  589. margin: 1em auto 10px auto;
  590. text-align: left;
  591. font-size: 18px;
  592. color: white;
  593. -webkit-transition-duration: 0.25s;
  594. transition-duration: 0.25s;
  595. font-weight: 300;
  596. bottom: 0;
  597. }
  598. .song-input-select{
  599. -webkit-appearance: none;
  600. -moz-appearance: none;
  601. appearance: none;
  602. outline: 0;
  603. border: 1px solid rgba(255, 255, 255, 0.4);
  604. background-color: rgba(255, 255, 255, 0.2);
  605. width: 304px;
  606. border-radius: 3px;
  607. padding: 10px 15px;
  608. margin: 1em auto 10px auto;
  609. display: block;
  610. text-align: center;
  611. font-size: 18px;
  612. color: white;
  613. -webkit-transition-duration: 0.25s;
  614. transition-duration: 0.25s;
  615. font-weight: 300;
  616. }
  617. .song-input:hover {
  618. background-color: rgba(255, 255, 255, 0.4);
  619. }
  620. .song-input:focus {
  621. background-color: rgba(255, 255, 255, 0.4);
  622. }
  623. .song-input-select:hover {
  624. background-color: rgba(255, 255, 255, 0.4);
  625. }
  626. .song-input-select > option {
  627. color: black;
  628. background-color: rgba(255, 255, 255, 0.2);
  629. }
  630. .song-input:focus {
  631. width: 354px;
  632. color: white;
  633. }
  634. #search-song{
  635. display: block;
  636. margin: 0 auto;
  637. }
  638. #song-results{
  639. margin: 0 auto;
  640. color: white;
  641. margin-top: 1em;
  642. font-size: 1.5em;
  643. text-align: center;
  644. }
  645. #song-results p{
  646. margin: 0;
  647. padding: 5px;
  648. }
  649. #song-results p:hover{
  650. background-color: cadetblue;
  651. cursor: pointer;
  652. }
  653. #player {
  654. }
  655. .hidden {
  656. visibility: hidden;
  657. }
  658. .footerButtons {
  659. background:none!important;
  660. border:none;
  661. padding:0!important;
  662. font: inherit;
  663. cursor: pointer;
  664. }
  665. .footerButtons:hover {
  666. background-color: #f5f7f9;
  667. }
  668. .song-img {
  669. width: 210px;
  670. height: 210px;
  671. margin-left: 35px;
  672. }
  673. #seeker-container {
  674. width: calc(100% - 70px);
  675. margin-left: 30px;
  676. margin-right: 35px;
  677. overflow: hidden;
  678. }
  679. .pl-container{
  680. color: #53e3a6;
  681. background-color: white;
  682. border-radius: 3px;
  683. font-size: 18px;
  684. }
  685. .pl-container h4{
  686. text-align: center;
  687. font-size: 40px;
  688. margin-bottom: 10px;
  689. }
  690. #spinner {
  691. font-size: 200px;
  692. color: bisque;
  693. }
  694. #spinner-container {
  695. margin-left: auto;
  696. margin-right: auto;
  697. width: 200px;
  698. margin-top: 10%;
  699. }
  700. #croom_container {
  701. margin-left: auto;
  702. margin-right: auto;
  703. margin-bottom: 10px;
  704. width: 304px !important;
  705. }
  706. #croom_label {
  707. color: white;
  708. }
  709. #croom {
  710. width: 304px !important;
  711. }
  712. #spinner {
  713. font-size: 200px;
  714. color: bisque;
  715. }
  716. #spinner-container {
  717. margin-left: auto;
  718. margin-right: auto;
  719. width: 200px;
  720. margin-top: 10%;
  721. }
  722. .modal-content{
  723. background-color: rgb(107, 197, 164);
  724. color: white;
  725. }
  726. .song-input-label {
  727. width: 100%;
  728. text-align: center;
  729. }
  730. .station_link {
  731. position:absolute;
  732. width:100%;
  733. height:100%;
  734. top:0;
  735. left: 0;
  736. border-radius: 100%;
  737. }
  738. .playlist-title{
  739. text-align: center;
  740. color: white;
  741. font-weight: 600;
  742. }
  743. #playlist {
  744. margin: 0;
  745. padding: 0;
  746. color: white;
  747. font-size: 1.5em;
  748. }
  749. #s2 {
  750. opacity: 0.66666666666666;
  751. }
  752. #s3 {
  753. opacity: 0.33333333333333;
  754. }
  755. #add-song-button, #get-spotify-info, #save-song-button {
  756. display: block;
  757. margin: 0 auto;
  758. }
  759. .alert{
  760. text-align: center;
  761. }
  762. @media (max-width: 992px) {
  763. /* some think */
  764. #s3 {
  765. visibility: hidden;
  766. height: 0;
  767. }
  768. }
  769. @media (max-width: 768px) {
  770. /* some think */
  771. #s2 {
  772. visibility: hidden;
  773. height: 0;
  774. }
  775. }
  776. .column-small {
  777. width: 1px;
  778. }
  779. #return {
  780. display: block;
  781. margin: 0 auto 20px auto;
  782. }
  783. #song-media{
  784. margin-left: 10px;
  785. }
  786. #station-main{
  787. margin: 0;
  788. padding: 0;
  789. }
  790. #station-main nav{
  791. height: 50px;
  792. color: white;
  793. }
  794. #station-main nav i{
  795. margin-left: 1em;
  796. font-size: 2em;
  797. }
  798. #station-main nav h3{
  799. display: inline-block;
  800. margin: 10px auto;
  801. margin-left: 50%;
  802. font-size: 2em;
  803. }
  804. #side-panel{
  805. height: 100vh;
  806. background-color: rgba(255,255,255,0.4);
  807. }
  808. .embed-responsive{
  809. margin-top: 15px;
  810. }
  811. #header {
  812. margin-bottom: 0px;
  813. }
  814. .user-stat {
  815. font-size: 20px;
  816. color: #53e3a6;
  817. }
  818. #profile-name {
  819. font-size: 60px;
  820. color: #FFFFFF;
  821. margin-right: auto;
  822. margin-left: auto;
  823. text-align: center;
  824. }
  825. .admin-queue-panel:first-child {
  826. margin-top: 20px;
  827. }
  828. #songs {
  829. margin-top: -200px;
  830. margin-bottom: 20px;
  831. }
  832. .back{
  833. color: white;
  834. }
  835. .back:hover{
  836. color: white;
  837. }
  838. #volume-container {
  839. width: 172px; /*12.5 px each side*/
  840. float: right;
  841. height: 100%;
  842. }
  843. #volume-container > .slider {
  844. top: 40%;
  845. transform: translateY(-40%);
  846. padding-right: 12px;
  847. padding-left: 12px;
  848. margin-left: 12px;
  849. float: left;
  850. }
  851. #volume-container-admin {
  852. display: inline-block;
  853. width: 174px;
  854. margin-left: 10px;
  855. }
  856. #volume-container-admin > .slider {
  857. width: 150px !important;
  858. padding-left: 12px;
  859. padding-right: 12px;
  860. margin-left: 12px;
  861. }
  862. #volume-icon{
  863. /*margin-left: 320px !important;*/
  864. margin: 0 !important;
  865. float: left;
  866. margin-top: 7px !important;
  867. width: 12px;
  868. }
  869. #settings{
  870. margin-top: 10px;
  871. margin-left: 10px;
  872. }
  873. #loginregistercontainer {
  874. margin-bottom: 100px;
  875. }
  876. .admin-header {
  877. color: white;
  878. }
  879. .admin-panel-body {
  880. max-height: 400px;
  881. overflow-y: scroll;
  882. overflow-x: hidden;
  883. }
  884. .terms, .privacy, .about {
  885. color: white;
  886. }