app.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887
  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. body {
  150. font-family: 'Source Sans Pro', sans-serif;
  151. font-weight: 300;
  152. }
  153. body ::-webkit-input-placeholder {
  154. /* WebKit browsers */
  155. font-family: 'Source Sans Pro', sans-serif;
  156. font-weight: 300;
  157. }
  158. body :-moz-placeholder {
  159. /* Mozilla Firefox 4 to 18 */
  160. font-family: 'Source Sans Pro', sans-serif;
  161. opacity: 1;
  162. font-weight: 300;
  163. }
  164. body ::-moz-placeholder {
  165. /* Mozilla Firefox 19+ */
  166. font-family: 'Source Sans Pro', sans-serif;
  167. opacity: 1;
  168. font-weight: 300;
  169. }
  170. body :-ms-input-placeholder {
  171. /* Internet Explorer 10+ */
  172. font-family: 'Source Sans Pro', sans-serif;
  173. font-weight: 300;
  174. }
  175. ul {
  176. list-style: none;
  177. }
  178. .navbar{
  179. background-color: transparent;
  180. border: none;
  181. }
  182. .navbar a{
  183. color: white !important;
  184. font-size: 1.3em;
  185. }
  186. .navbar-default .navbar-nav > .active > a,
  187. .navbar-default .navbar-nav > .active > a:hover,
  188. .navbar-default .navbar-nav > .active > a:focus{
  189. background-color: transparent;
  190. font-weight: 900;
  191. }
  192. .loginlanding {
  193. background: #50a3a2;
  194. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  195. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  196. position: absolute;
  197. /*top: 20%;*/
  198. left: 0;
  199. width: 100%;
  200. height: 100%; /*400px*/
  201. /*margin-top: -200px;*/
  202. overflow-x: hidden;
  203. overflow-y: auto;
  204. }
  205. .landing {
  206. background: #50a3a2;
  207. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  208. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  209. position: absolute;
  210. /*top: 20%;*/
  211. left: 0;
  212. width: 100%;
  213. height: 100%; /*400px*/
  214. /*margin-top: -200px;*/
  215. overflow-x: hidden;
  216. overflow-y: auto;
  217. }
  218. .container {
  219. max-width: 600px;
  220. margin: 0 auto;
  221. padding: 80px 0;
  222. height: 400px;
  223. text-align: center;
  224. }
  225. .container h1 {
  226. font-size: 40px;
  227. color: white;
  228. -webkit-transition-duration: 1s;
  229. transition-duration: 1s;
  230. -webkit-transition-timing-function: ease-in-put;
  231. transition-timing-function: ease-in-put;
  232. font-weight: 200;
  233. }
  234. .container p {
  235. font-size: 10px;
  236. color: white;
  237. -webkit-transition-duration: 1s;
  238. transition-duration: 1s;
  239. -webkit-transition-timing-function: ease-in-put;
  240. transition-timing-function: ease-in-put;
  241. font-weight: 200;
  242. }
  243. form {
  244. padding: 20px 0;
  245. position: relative;
  246. z-index: 2;
  247. }
  248. form input, #croom {
  249. -webkit-appearance: none;
  250. -moz-appearance: none;
  251. appearance: none;
  252. outline: 0;
  253. border: 1px solid rgba(255, 255, 255, 0.4);
  254. background-color: rgba(255, 255, 255, 0.2);
  255. width: 304px;
  256. border-radius: 3px;
  257. padding: 10px 15px;
  258. margin: 0 auto 10px auto;
  259. display: block;
  260. text-align: center;
  261. font-size: 18px;
  262. color: white;
  263. -webkit-transition-duration: 0.25s;
  264. transition-duration: 0.25s;
  265. font-weight: 300;
  266. }
  267. form input:hover {
  268. background-color: rgba(255, 255, 255, 0.4);
  269. }
  270. form input:focus {
  271. /*opacity: 0.4;*/
  272. width: 354px;
  273. color: white;
  274. }
  275. .g-recaptcha {
  276. -webkit-appearance: none;
  277. -moz-appearance: none;
  278. appearance: none;
  279. outline: 0;
  280. width: 304px;
  281. margin: 0 auto 10px auto;
  282. display: block;
  283. text-align: center;
  284. font-size: 18px;
  285. color: white;
  286. -webkit-transition-duration: 0.25s;
  287. transition-duration: 0.25s;
  288. font-weight: 300;
  289. }
  290. form button {
  291. -webkit-appearance: none;
  292. -moz-appearance: none;
  293. appearance: none;
  294. outline: 0;
  295. background-color: white;
  296. border: 0;
  297. padding: 10px 15px;
  298. color: #53e3a6;
  299. border-radius: 3px;
  300. width: 304px;
  301. cursor: pointer;
  302. font-size: 18px;
  303. -webkit-transition-duration: 0.25s;
  304. transition-duration: 0.25s;
  305. }
  306. ::-webkit-input-placeholder {
  307. color: white;
  308. }
  309. ::-moz-placeholder { /* Firefox 19+ */
  310. color: white;
  311. }
  312. :-ms-input-placeholder {
  313. color: white;
  314. }
  315. form button:hover {
  316. background-color: #f5f7f9;
  317. }
  318. .bg-bubbles {
  319. top: 0;
  320. left: 0;
  321. width: 100%;
  322. height: 100%;
  323. position: absolute;
  324. z-index: 1;
  325. margin: 0px;
  326. pointer-events: none;
  327. }
  328. .bg-bubbles li {
  329. position: absolute;
  330. list-style: none;
  331. display: block;
  332. width: 40px;
  333. height: 40px;
  334. border-radius: 100px;
  335. background-color: rgba(255, 255, 255, 0.15);
  336. bottom: 0px;
  337. -webkit-animation: square 25s infinite;
  338. animation: square 25s infinite;
  339. -webkit-transition-timing-function: linear;
  340. transition-timing-function: linear;
  341. }
  342. .bg-bubbles li:nth-child(1) {
  343. left: 10%;
  344. }
  345. .bg-bubbles li:nth-child(2) {
  346. left: 20%;
  347. width: 80px;
  348. height: 80px;
  349. -webkit-animation-delay: 2s;
  350. animation-delay: 2s;
  351. -webkit-animation-duration: 17s;
  352. animation-duration: 17s;
  353. }
  354. .bg-bubbles li:nth-child(3) {
  355. left: 25%;
  356. -webkit-animation-delay: 4s;
  357. animation-delay: 4s;
  358. }
  359. .bg-bubbles li:nth-child(4) {
  360. left: 40%;
  361. width: 60px;
  362. height: 60px;
  363. -webkit-animation-duration: 22s;
  364. animation-duration: 22s;
  365. background-color: rgba(255, 255, 255, 0.25);
  366. }
  367. .bg-bubbles li:nth-child(5) {
  368. left: 70%;
  369. }
  370. .bg-bubbles li:nth-child(6) {
  371. left: 80%;
  372. width: 120px;
  373. height: 120px;
  374. -webkit-animation-delay: 3s;
  375. animation-delay: 3s;
  376. background-color: rgba(255, 255, 255, 0.2);
  377. }
  378. .bg-bubbles li:nth-child(7) {
  379. left: 32%;
  380. width: 160px;
  381. height: 160px;
  382. -webkit-animation-delay: 7s;
  383. animation-delay: 7s;
  384. }
  385. .bg-bubbles li:nth-child(8) {
  386. left: 55%;
  387. width: 20px;
  388. height: 20px;
  389. -webkit-animation-delay: 15s;
  390. animation-delay: 15s;
  391. -webkit-animation-duration: 40s;
  392. animation-duration: 40s;
  393. }
  394. .bg-bubbles li:nth-child(9) {
  395. left: 25%;
  396. width: 10px;
  397. height: 10px;
  398. -webkit-animation-delay: 2s;
  399. animation-delay: 2s;
  400. -webkit-animation-duration: 40s;
  401. animation-duration: 40s;
  402. background-color: rgba(255, 255, 255, 0.3);
  403. }
  404. .bg-bubbles li:nth-child(10) {
  405. left: 90%;
  406. width: 160px;
  407. height: 160px;
  408. -webkit-animation-delay: 11s;
  409. animation-delay: 11s;
  410. }
  411. @-webkit-keyframes square {
  412. 0% {
  413. -webkit-transform: translateY(0);
  414. transform: translateY(0);
  415. }
  416. 100% {
  417. -webkit-transform: translateY(-700px) rotate(600deg);
  418. transform: translateY(-700px) rotate(600deg);
  419. }
  420. }
  421. @keyframes square {
  422. 0% {
  423. -webkit-transform: translateY(0);
  424. transform: translateY(0);
  425. }
  426. 100% {
  427. -webkit-transform: translateY(-700px) rotate(600deg);
  428. transform: translateY(-700px) rotate(600deg);
  429. }
  430. }
  431. .fa-github{
  432. margin-top: 3px;
  433. }
  434. #github-login{
  435. background-color: #999;
  436. margin-bottom: 100px;
  437. }
  438. .btn-social{
  439. -webkit-appearance: none;
  440. -moz-appearance: none;
  441. appearance: none;
  442. outline: 0;
  443. border: 0;
  444. padding: 10px 15px;
  445. border-radius: 3px;
  446. width: 304px;
  447. cursor: pointer;
  448. font-size: 18px;
  449. color: #fff;
  450. }
  451. footer {
  452. text-align: center;
  453. position:absolute;
  454. bottom:0;
  455. width:100%;
  456. height:60px; /* Height of the footer */
  457. padding: 0;
  458. color: white;
  459. }
  460. footer a{
  461. color: white;
  462. }
  463. footer a:hover{
  464. color: white;
  465. }
  466. .button-nowidth {
  467. -webkit-appearance: none;
  468. -moz-appearance: none;
  469. appearance: none;
  470. outline: 0;
  471. background-color: white;
  472. border: 0;
  473. padding: 10px 15px;
  474. color: #53e3a6;
  475. border-radius: 3px;
  476. cursor: pointer;
  477. font-size: 18px;
  478. -webkit-transition-duration: 0.25s;
  479. transition-duration: 0.25s;
  480. }
  481. .button-nowidth:hover {
  482. background-color: #f5f7f9;
  483. }
  484. .button {
  485. -webkit-appearance: none;
  486. -moz-appearance: none;
  487. appearance: none;
  488. outline: 0;
  489. background-color: white;
  490. border: 0;
  491. padding: 10px 15px;
  492. color: #53e3a6;
  493. border-radius: 3px;
  494. width: 304px;
  495. cursor: pointer;
  496. font-size: 18px;
  497. -webkit-transition-duration: 0.25s;
  498. transition-duration: 0.25s;
  499. }
  500. .button:hover {
  501. background-color: #f5f7f9;
  502. }
  503. .station{
  504. background-color: rgba(102,205,170,0.7);
  505. height: 300px;
  506. width: 300px;
  507. border-radius: 100%;
  508. text-align: center;
  509. color: white;
  510. font-family: Sans-serif;
  511. /*float: left;*/
  512. margin-right: auto;
  513. margin-left: auto;
  514. position: relative;
  515. }
  516. .station > h3 {
  517. line-height: 200px;
  518. font-size: 42px;
  519. }
  520. .station > h5 {
  521. margin-top: -40px;
  522. font-size: 15px;
  523. }
  524. .room-name{
  525. font-size: 3.5em;
  526. color: white;
  527. font-weight: 600;
  528. text-align: center;
  529. }
  530. .room-title{
  531. font-size: 2.5em;
  532. color: white;
  533. font-weight: 600;
  534. margin-left: 35px;
  535. }
  536. .room-artist{
  537. font-size: 1.5em;
  538. color: white;
  539. margin-left: 35px;
  540. }
  541. #seeker-bar{
  542. background-color: black;
  543. width: 0;
  544. height: 10px;
  545. clear: both;
  546. background-color: rgba(16, 140, 146, 0.8);
  547. }
  548. .privacy {
  549. margin: 0 auto;
  550. padding: 100px 0;
  551. height: 900px;
  552. text-align: center;
  553. }
  554. .terms {
  555. margin: 0 auto;
  556. padding: 100px 0;
  557. height: 900px;
  558. text-align: center;
  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. height: 0;
  658. }
  659. .footerButtons {
  660. background:none!important;
  661. border:none;
  662. padding:0!important;
  663. font: inherit;
  664. cursor: pointer;
  665. }
  666. .footerButtons:hover {
  667. background-color: #f5f7f9;
  668. }
  669. .song-img {
  670. width: 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: 100px;
  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{
  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: 100px;
  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. #doorbell-button{
  839. margin-right: 2000px;
  840. }
  841. #volume-container {
  842. width: 160px; /*12.5 px each side*/
  843. float: right;
  844. height: 100%;
  845. }
  846. #volume-container > .slider {
  847. top: 40%;
  848. transform: translateY(-40%);
  849. padding-right: 12px;
  850. padding-left: 12px;
  851. margin-left: 12px;
  852. }
  853. #volume-container-admin {
  854. display: inline-block;
  855. width: 174px;
  856. margin-left: 10px;
  857. }
  858. #volume-container-admin > .slider {
  859. width: 150px !important;
  860. padding-left: 12px;
  861. padding-right: 12px;
  862. margin-left: 12px;
  863. }
  864. #volume-icon{
  865. margin-left: 320px !important;
  866. }
  867. #settings{
  868. margin-top: 10px;
  869. margin-left: 10px;
  870. }