app.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  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. .loginlanding {
  179. background: #50a3a2;
  180. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  181. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  182. position: absolute;
  183. /*top: 20%;*/
  184. left: 0;
  185. width: 100%;
  186. height: 100%; /*400px*/
  187. /*margin-top: -200px;*/
  188. overflow-x: hidden;
  189. overflow-y: auto;
  190. }
  191. .landing {
  192. background: #50a3a2;
  193. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  194. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  195. position: absolute;
  196. /*top: 20%;*/
  197. left: 0;
  198. width: 100%;
  199. height: 100%; /*400px*/
  200. /*margin-top: -200px;*/
  201. overflow-x: hidden;
  202. overflow-y: auto;
  203. }
  204. .container {
  205. max-width: 600px;
  206. margin: 0 auto;
  207. padding: 80px 0;
  208. height: 400px;
  209. text-align: center;
  210. }
  211. .container h1 {
  212. font-size: 40px;
  213. color: white;
  214. -webkit-transition-duration: 1s;
  215. transition-duration: 1s;
  216. -webkit-transition-timing-function: ease-in-put;
  217. transition-timing-function: ease-in-put;
  218. font-weight: 200;
  219. }
  220. .container p {
  221. font-size: 10px;
  222. color: white;
  223. -webkit-transition-duration: 1s;
  224. transition-duration: 1s;
  225. -webkit-transition-timing-function: ease-in-put;
  226. transition-timing-function: ease-in-put;
  227. font-weight: 200;
  228. }
  229. form {
  230. padding: 20px 0;
  231. position: relative;
  232. z-index: 2;
  233. }
  234. form input, #croom {
  235. -webkit-appearance: none;
  236. -moz-appearance: none;
  237. appearance: none;
  238. outline: 0;
  239. border: 1px solid rgba(255, 255, 255, 0.4);
  240. background-color: rgba(255, 255, 255, 0.2);
  241. width: 304px;
  242. border-radius: 3px;
  243. padding: 10px 15px;
  244. margin: 0 auto 10px auto;
  245. display: block;
  246. text-align: center;
  247. font-size: 18px;
  248. color: white;
  249. -webkit-transition-duration: 0.25s;
  250. transition-duration: 0.25s;
  251. font-weight: 300;
  252. }
  253. form input:hover {
  254. background-color: rgba(255, 255, 255, 0.4);
  255. }
  256. form input:focus {
  257. /*opacity: 0.4;*/
  258. width: 354px;
  259. color: white;
  260. }
  261. .g-recaptcha {
  262. -webkit-appearance: none;
  263. -moz-appearance: none;
  264. appearance: none;
  265. outline: 0;
  266. width: 304px;
  267. margin: 0 auto 10px auto;
  268. display: block;
  269. text-align: center;
  270. font-size: 18px;
  271. color: white;
  272. -webkit-transition-duration: 0.25s;
  273. transition-duration: 0.25s;
  274. font-weight: 300;
  275. }
  276. form button {
  277. -webkit-appearance: none;
  278. -moz-appearance: none;
  279. appearance: none;
  280. outline: 0;
  281. background-color: white;
  282. border: 0;
  283. padding: 10px 15px;
  284. color: #53e3a6;
  285. border-radius: 3px;
  286. width: 304px;
  287. cursor: pointer;
  288. font-size: 18px;
  289. -webkit-transition-duration: 0.25s;
  290. transition-duration: 0.25s;
  291. }
  292. ::-webkit-input-placeholder {
  293. color: white;
  294. }
  295. ::-moz-placeholder { /* Firefox 19+ */
  296. color: white;
  297. }
  298. :-ms-input-placeholder {
  299. color: white;
  300. }
  301. form button:hover {
  302. background-color: #f5f7f9;
  303. }
  304. .bg-bubbles {
  305. top: 0;
  306. left: 0;
  307. width: 100%;
  308. height: 100%;
  309. position: absolute;
  310. z-index: 1;
  311. margin: 0px;
  312. pointer-events: none;
  313. }
  314. .bg-bubbles li {
  315. position: absolute;
  316. list-style: none;
  317. display: block;
  318. width: 40px;
  319. height: 40px;
  320. border-radius: 100px;
  321. background-color: rgba(255, 255, 255, 0.15);
  322. bottom: 0px;
  323. -webkit-animation: square 25s infinite;
  324. animation: square 25s infinite;
  325. -webkit-transition-timing-function: linear;
  326. transition-timing-function: linear;
  327. }
  328. .bg-bubbles li:nth-child(1) {
  329. left: 10%;
  330. }
  331. .bg-bubbles li:nth-child(2) {
  332. left: 20%;
  333. width: 80px;
  334. height: 80px;
  335. -webkit-animation-delay: 2s;
  336. animation-delay: 2s;
  337. -webkit-animation-duration: 17s;
  338. animation-duration: 17s;
  339. }
  340. .bg-bubbles li:nth-child(3) {
  341. left: 25%;
  342. -webkit-animation-delay: 4s;
  343. animation-delay: 4s;
  344. }
  345. .bg-bubbles li:nth-child(4) {
  346. left: 40%;
  347. width: 60px;
  348. height: 60px;
  349. -webkit-animation-duration: 22s;
  350. animation-duration: 22s;
  351. background-color: rgba(255, 255, 255, 0.25);
  352. }
  353. .bg-bubbles li:nth-child(5) {
  354. left: 70%;
  355. }
  356. .bg-bubbles li:nth-child(6) {
  357. left: 80%;
  358. width: 120px;
  359. height: 120px;
  360. -webkit-animation-delay: 3s;
  361. animation-delay: 3s;
  362. background-color: rgba(255, 255, 255, 0.2);
  363. }
  364. .bg-bubbles li:nth-child(7) {
  365. left: 32%;
  366. width: 160px;
  367. height: 160px;
  368. -webkit-animation-delay: 7s;
  369. animation-delay: 7s;
  370. }
  371. .bg-bubbles li:nth-child(8) {
  372. left: 55%;
  373. width: 20px;
  374. height: 20px;
  375. -webkit-animation-delay: 15s;
  376. animation-delay: 15s;
  377. -webkit-animation-duration: 40s;
  378. animation-duration: 40s;
  379. }
  380. .bg-bubbles li:nth-child(9) {
  381. left: 25%;
  382. width: 10px;
  383. height: 10px;
  384. -webkit-animation-delay: 2s;
  385. animation-delay: 2s;
  386. -webkit-animation-duration: 40s;
  387. animation-duration: 40s;
  388. background-color: rgba(255, 255, 255, 0.3);
  389. }
  390. .bg-bubbles li:nth-child(10) {
  391. left: 90%;
  392. width: 160px;
  393. height: 160px;
  394. -webkit-animation-delay: 11s;
  395. animation-delay: 11s;
  396. }
  397. @-webkit-keyframes square {
  398. 0% {
  399. -webkit-transform: translateY(0);
  400. transform: translateY(0);
  401. }
  402. 100% {
  403. -webkit-transform: translateY(-700px) rotate(600deg);
  404. transform: translateY(-700px) rotate(600deg);
  405. }
  406. }
  407. @keyframes square {
  408. 0% {
  409. -webkit-transform: translateY(0);
  410. transform: translateY(0);
  411. }
  412. 100% {
  413. -webkit-transform: translateY(-700px) rotate(600deg);
  414. transform: translateY(-700px) rotate(600deg);
  415. }
  416. }
  417. .fa-github{
  418. margin-top: 3px;
  419. }
  420. #github-login{
  421. background-color: #999;
  422. margin-bottom: 100px;
  423. }
  424. .btn-social{
  425. -webkit-appearance: none;
  426. -moz-appearance: none;
  427. appearance: none;
  428. outline: 0;
  429. border: 0;
  430. padding: 10px 15px;
  431. border-radius: 3px;
  432. width: 304px;
  433. cursor: pointer;
  434. font-size: 18px;
  435. color: #fff;
  436. }
  437. footer {
  438. text-align: center;
  439. position:absolute;
  440. bottom:0;
  441. width:100%;
  442. height:60px; /* Height of the footer */
  443. padding: 0;
  444. color: white;
  445. }
  446. footer a{
  447. color: white;
  448. }
  449. footer a:hover{
  450. color: white;
  451. }
  452. .button-nowidth {
  453. -webkit-appearance: none;
  454. -moz-appearance: none;
  455. appearance: none;
  456. outline: 0;
  457. background-color: white;
  458. border: 0;
  459. padding: 10px 15px;
  460. color: #53e3a6;
  461. border-radius: 3px;
  462. cursor: pointer;
  463. font-size: 18px;
  464. -webkit-transition-duration: 0.25s;
  465. transition-duration: 0.25s;
  466. }
  467. .button-nowidth:hover {
  468. background-color: #f5f7f9;
  469. }
  470. .button {
  471. -webkit-appearance: none;
  472. -moz-appearance: none;
  473. appearance: none;
  474. outline: 0;
  475. background-color: white;
  476. border: 0;
  477. padding: 10px 15px;
  478. color: #53e3a6;
  479. border-radius: 3px;
  480. width: 304px;
  481. cursor: pointer;
  482. font-size: 18px;
  483. -webkit-transition-duration: 0.25s;
  484. transition-duration: 0.25s;
  485. }
  486. .button:hover {
  487. background-color: #f5f7f9;
  488. }
  489. .station{
  490. background-color: rgba(102,205,170,0.7);
  491. height: 300px;
  492. width: 300px;
  493. border-radius: 100%;
  494. text-align: center;
  495. color: white;
  496. font-family: Sans-serif;
  497. /*float: left;*/
  498. margin-right: auto;
  499. margin-left: auto;
  500. position: relative;
  501. }
  502. .station > h3 {
  503. line-height: 200px;
  504. font-size: 42px;
  505. }
  506. .station > h5 {
  507. margin-top: -40px;
  508. font-size: 15px;
  509. }
  510. .room-name{
  511. font-size: 3.5em;
  512. color: white;
  513. font-weight: 600;
  514. text-align: center;
  515. }
  516. .room-title{
  517. font-size: 2.5em;
  518. color: white;
  519. font-weight: 600;
  520. margin-left: 35px;
  521. }
  522. .room-artist{
  523. font-size: 1.5em;
  524. color: white;
  525. margin-left: 35px;
  526. }
  527. #seeker-bar{
  528. background-color: black;
  529. width: 0;
  530. height: 10px;
  531. clear: both;
  532. background-color: rgba(16, 140, 146, 0.8);
  533. }
  534. .privacy {
  535. margin: 0 auto;
  536. padding: 100px 0;
  537. height: 900px;
  538. text-align: center;
  539. }
  540. .terms {
  541. margin: 0 auto;
  542. padding: 100px 0;
  543. height: 900px;
  544. text-align: center;
  545. }
  546. .song-input{
  547. -webkit-appearance: none;
  548. -moz-appearance: none;
  549. appearance: none;
  550. outline: 0;
  551. border: 1px solid rgba(255, 255, 255, 0.4);
  552. background-color: rgba(255, 255, 255, 0.2);
  553. width: 304px;
  554. border-radius: 3px;
  555. padding: 10px 15px;
  556. margin: 1em auto 10px auto;
  557. display: block;
  558. text-align: center;
  559. font-size: 18px;
  560. color: white;
  561. -webkit-transition-duration: 0.25s;
  562. transition-duration: 0.25s;
  563. font-weight: 300;
  564. }
  565. #chat-input {
  566. -webkit-appearance: none;
  567. -moz-appearance: none;
  568. appearance: none;
  569. outline: 0;
  570. border: 1px solid white;
  571. background-color: transparent;
  572. width: 90%;
  573. border-radius: 3px;
  574. padding: 10px 15px;
  575. margin: 1em auto 10px auto;
  576. text-align: left;
  577. font-size: 18px;
  578. color: white;
  579. -webkit-transition-duration: 0.25s;
  580. transition-duration: 0.25s;
  581. font-weight: 300;
  582. bottom: 0;
  583. }
  584. .song-input-select{
  585. -webkit-appearance: none;
  586. -moz-appearance: none;
  587. appearance: none;
  588. outline: 0;
  589. border: 1px solid rgba(255, 255, 255, 0.4);
  590. background-color: rgba(255, 255, 255, 0.2);
  591. width: 304px;
  592. border-radius: 3px;
  593. padding: 10px 15px;
  594. margin: 1em auto 10px auto;
  595. display: block;
  596. text-align: center;
  597. font-size: 18px;
  598. color: white;
  599. -webkit-transition-duration: 0.25s;
  600. transition-duration: 0.25s;
  601. font-weight: 300;
  602. }
  603. .song-input:hover {
  604. background-color: rgba(255, 255, 255, 0.4);
  605. }
  606. .song-input:focus {
  607. background-color: rgba(255, 255, 255, 0.4);
  608. }
  609. .song-input-select:hover {
  610. background-color: rgba(255, 255, 255, 0.4);
  611. }
  612. .song-input-select > option {
  613. color: black;
  614. background-color: rgba(255, 255, 255, 0.2);
  615. }
  616. .song-input:focus {
  617. width: 354px;
  618. color: white;
  619. }
  620. #search-song{
  621. display: block;
  622. margin: 0 auto;
  623. }
  624. #song-results{
  625. margin: 0 auto;
  626. color: white;
  627. margin-top: 1em;
  628. font-size: 1.5em;
  629. text-align: center;
  630. }
  631. #song-results p{
  632. margin: 0;
  633. padding: 5px;
  634. }
  635. #song-results p:hover{
  636. background-color: cadetblue;
  637. cursor: pointer;
  638. }
  639. #player {
  640. }
  641. .hidden {
  642. visibility: hidden;
  643. height: 0;
  644. }
  645. .footerButtons {
  646. background:none!important;
  647. border:none;
  648. padding:0!important;
  649. font: inherit;
  650. cursor: pointer;
  651. }
  652. .footerButtons:hover {
  653. background-color: #f5f7f9;
  654. }
  655. .song-img {
  656. width: 210px;
  657. margin-left: 35px;
  658. }
  659. #seeker-container {
  660. width: calc(100% - 70px);
  661. margin-left: 30px;
  662. margin-right: 35px;
  663. overflow: hidden;
  664. }
  665. .pl-container{
  666. color: #53e3a6;
  667. background-color: white;
  668. border-radius: 3px;
  669. font-size: 18px;
  670. }
  671. .pl-container h4{
  672. text-align: center;
  673. font-size: 40px;
  674. margin-bottom: 10px;
  675. }
  676. #spinner {
  677. font-size: 200px;
  678. color: bisque;
  679. }
  680. #spinner-container {
  681. margin-left: auto;
  682. margin-right: auto;
  683. width: 200px;
  684. margin-top: 10%;
  685. }
  686. #croom_container {
  687. margin-left: auto;
  688. margin-right: auto;
  689. margin-bottom: 100px;
  690. width: 304px !important;
  691. }
  692. #croom_label {
  693. color: white;
  694. }
  695. #croom {
  696. width: 304px !important;
  697. }
  698. #spinner {
  699. font-size: 200px;
  700. color: bisque;
  701. }
  702. #spinner-container {
  703. margin-left: auto;
  704. margin-right: auto;
  705. width: 200px;
  706. margin-top: 10%;
  707. }
  708. #song-modal{
  709. margin-top: 40px;
  710. margin-bottom: 40px;
  711. }
  712. .modal-content{
  713. background-color: rgb(107, 197, 164);
  714. color: white;
  715. }
  716. .song-input-label {
  717. width: 100%;
  718. text-align: center;
  719. }
  720. .station_link {
  721. position:absolute;
  722. width:100%;
  723. height:100%;
  724. top:0;
  725. left: 0;
  726. border-radius: 100%;
  727. }
  728. #playlist {
  729. }
  730. #s2 {
  731. opacity: 0.66666666666666;
  732. }
  733. #s3 {
  734. opacity: 0.33333333333333;
  735. }
  736. #add-song-button{
  737. display: block;
  738. margin: 0 auto;
  739. }
  740. .alert{
  741. text-align: center;
  742. }
  743. @media (max-width: 992px) {
  744. /* some think */
  745. #s3 {
  746. visibility: hidden;
  747. height: 0;
  748. }
  749. }
  750. @media (max-width: 768px) {
  751. /* some think */
  752. #s2 {
  753. visibility: hidden;
  754. height: 0;
  755. }
  756. }
  757. .column-small {
  758. width: 1px;
  759. }
  760. #return {
  761. display: block;
  762. margin: 0 auto 20px auto;
  763. }
  764. #song-media{
  765. margin-left: 10px;
  766. }
  767. #station-main{
  768. margin: 0;
  769. padding: 0;
  770. }
  771. #station-main nav{
  772. height: 50px;
  773. color: white;
  774. }
  775. #station-main nav i{
  776. margin-left: 1em;
  777. font-size: 2em;
  778. }
  779. #station-main nav h3{
  780. display: inline-block;
  781. margin: 10px auto;
  782. margin-left: 50%;
  783. font-size: 2em;
  784. }
  785. .embed-responsive{
  786. margin-top: 15px;
  787. }
  788. #header {
  789. margin-bottom: 0px;
  790. }
  791. .user-stat {
  792. font-size: 20px;
  793. color: #53e3a6;
  794. }
  795. #profile-name {
  796. font-size: 60px;
  797. color: #FFFFFF;
  798. margin-right: auto;
  799. margin-left: auto;
  800. text-align: center;
  801. }
  802. .admin-queue-panel:first-child {
  803. margin-top: 100px;
  804. }
  805. #songs {
  806. margin-top: -200px;
  807. margin-bottom: 20px;
  808. }
  809. .back{
  810. color: white;
  811. }
  812. .back:hover{
  813. color: white;
  814. }
  815. #doorbell-button{
  816. margin-right: 2000px;
  817. }
  818. #volume-container {
  819. width: 160px; /*12.5 px each side*/
  820. float: right;
  821. height: 100%;
  822. background-color: #97D8C8;
  823. }
  824. .slider {
  825. top: 40%;
  826. transform: translateY(-40%);
  827. padding-right: 12px;
  828. padding-left: 12px;
  829. margin-left: 12px;
  830. }