app.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878
  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. .song-input{
  549. -webkit-appearance: none;
  550. -moz-appearance: none;
  551. appearance: none;
  552. outline: 0;
  553. border: 1px solid rgba(255, 255, 255, 0.4);
  554. background-color: rgba(255, 255, 255, 0.2);
  555. width: 304px;
  556. border-radius: 3px;
  557. padding: 10px 15px;
  558. margin: 1em auto 10px auto;
  559. display: block;
  560. text-align: center;
  561. font-size: 18px;
  562. color: white;
  563. -webkit-transition-duration: 0.25s;
  564. transition-duration: 0.25s;
  565. font-weight: 300;
  566. }
  567. #chat-input {
  568. -webkit-appearance: none;
  569. -moz-appearance: none;
  570. appearance: none;
  571. outline: 0;
  572. border: 1px solid white;
  573. background-color: transparent;
  574. width: 90%;
  575. border-radius: 3px;
  576. padding: 10px 15px;
  577. margin: 1em auto 10px auto;
  578. text-align: left;
  579. font-size: 18px;
  580. color: white;
  581. -webkit-transition-duration: 0.25s;
  582. transition-duration: 0.25s;
  583. font-weight: 300;
  584. bottom: 0;
  585. }
  586. .song-input-select{
  587. -webkit-appearance: none;
  588. -moz-appearance: none;
  589. appearance: none;
  590. outline: 0;
  591. border: 1px solid rgba(255, 255, 255, 0.4);
  592. background-color: rgba(255, 255, 255, 0.2);
  593. width: 304px;
  594. border-radius: 3px;
  595. padding: 10px 15px;
  596. margin: 1em auto 10px auto;
  597. display: block;
  598. text-align: center;
  599. font-size: 18px;
  600. color: white;
  601. -webkit-transition-duration: 0.25s;
  602. transition-duration: 0.25s;
  603. font-weight: 300;
  604. }
  605. .song-input:hover {
  606. background-color: rgba(255, 255, 255, 0.4);
  607. }
  608. .song-input:focus {
  609. background-color: rgba(255, 255, 255, 0.4);
  610. }
  611. .song-input-select:hover {
  612. background-color: rgba(255, 255, 255, 0.4);
  613. }
  614. .song-input-select > option {
  615. color: black;
  616. background-color: rgba(255, 255, 255, 0.2);
  617. }
  618. .song-input:focus {
  619. width: 354px;
  620. color: white;
  621. }
  622. #search-song{
  623. display: block;
  624. margin: 0 auto;
  625. }
  626. #song-results{
  627. margin: 0 auto;
  628. color: white;
  629. margin-top: 1em;
  630. font-size: 1.5em;
  631. text-align: center;
  632. }
  633. #song-results p{
  634. margin: 0;
  635. padding: 5px;
  636. }
  637. #song-results p:hover{
  638. background-color: cadetblue;
  639. cursor: pointer;
  640. }
  641. #player {
  642. }
  643. .hidden {
  644. visibility: hidden;
  645. }
  646. .footerButtons {
  647. background:none!important;
  648. border:none;
  649. padding:0!important;
  650. font: inherit;
  651. cursor: pointer;
  652. }
  653. .footerButtons:hover {
  654. background-color: #f5f7f9;
  655. }
  656. .song-img {
  657. width: 210px;
  658. margin-left: 35px;
  659. }
  660. #seeker-container {
  661. width: calc(100% - 70px);
  662. margin-left: 30px;
  663. margin-right: 35px;
  664. overflow: hidden;
  665. }
  666. .pl-container{
  667. color: #53e3a6;
  668. background-color: white;
  669. border-radius: 3px;
  670. font-size: 18px;
  671. }
  672. .pl-container h4{
  673. text-align: center;
  674. font-size: 40px;
  675. margin-bottom: 10px;
  676. }
  677. #spinner {
  678. font-size: 200px;
  679. color: bisque;
  680. }
  681. #spinner-container {
  682. margin-left: auto;
  683. margin-right: auto;
  684. width: 200px;
  685. margin-top: 10%;
  686. }
  687. #croom_container {
  688. margin-left: auto;
  689. margin-right: auto;
  690. margin-bottom: 100px;
  691. width: 304px !important;
  692. }
  693. #croom_label {
  694. color: white;
  695. }
  696. #croom {
  697. width: 304px !important;
  698. }
  699. #spinner {
  700. font-size: 200px;
  701. color: bisque;
  702. }
  703. #spinner-container {
  704. margin-left: auto;
  705. margin-right: auto;
  706. width: 200px;
  707. margin-top: 10%;
  708. }
  709. .modal-content{
  710. background-color: rgb(107, 197, 164);
  711. color: white;
  712. }
  713. .song-input-label {
  714. width: 100%;
  715. text-align: center;
  716. }
  717. .station_link {
  718. position:absolute;
  719. width:100%;
  720. height:100%;
  721. top:0;
  722. left: 0;
  723. border-radius: 100%;
  724. }
  725. .playlist-title{
  726. text-align: center;
  727. color: white;
  728. font-weight: 600;
  729. }
  730. #playlist {
  731. margin: 0;
  732. padding: 0;
  733. color: white;
  734. font-size: 1.5em;
  735. }
  736. #s2 {
  737. opacity: 0.66666666666666;
  738. }
  739. #s3 {
  740. opacity: 0.33333333333333;
  741. }
  742. #add-song-button, #find-img-button, #save-song-button {
  743. display: block;
  744. margin: 0 auto;
  745. }
  746. .alert{
  747. text-align: center;
  748. }
  749. @media (max-width: 992px) {
  750. /* some think */
  751. #s3 {
  752. visibility: hidden;
  753. height: 0;
  754. }
  755. }
  756. @media (max-width: 768px) {
  757. /* some think */
  758. #s2 {
  759. visibility: hidden;
  760. height: 0;
  761. }
  762. }
  763. .column-small {
  764. width: 1px;
  765. }
  766. #return {
  767. display: block;
  768. margin: 0 auto 20px auto;
  769. }
  770. #song-media{
  771. margin-left: 10px;
  772. }
  773. #station-main{
  774. margin: 0;
  775. padding: 0;
  776. }
  777. #station-main nav{
  778. height: 50px;
  779. color: white;
  780. }
  781. #station-main nav i{
  782. margin-left: 1em;
  783. font-size: 2em;
  784. }
  785. #station-main nav h3{
  786. display: inline-block;
  787. margin: 10px auto;
  788. margin-left: 50%;
  789. font-size: 2em;
  790. }
  791. #side-panel{
  792. height: 100vh;
  793. background-color: rgba(255,255,255,0.4);
  794. }
  795. .embed-responsive{
  796. margin-top: 15px;
  797. }
  798. #header {
  799. margin-bottom: 0px;
  800. }
  801. .user-stat {
  802. font-size: 20px;
  803. color: #53e3a6;
  804. }
  805. #profile-name {
  806. font-size: 60px;
  807. color: #FFFFFF;
  808. margin-right: auto;
  809. margin-left: auto;
  810. text-align: center;
  811. }
  812. .admin-queue-panel:first-child {
  813. margin-top: 100px;
  814. }
  815. #songs {
  816. margin-top: -200px;
  817. margin-bottom: 20px;
  818. }
  819. .back{
  820. color: white;
  821. }
  822. .back:hover{
  823. color: white;
  824. }
  825. #doorbell-button{
  826. margin-right: 2000px;
  827. }
  828. #volume-container {
  829. width: 172px; /*12.5 px each side*/
  830. float: right;
  831. height: 100%;
  832. }
  833. #volume-container > .slider {
  834. top: 40%;
  835. transform: translateY(-40%);
  836. padding-right: 12px;
  837. padding-left: 12px;
  838. margin-left: 12px;
  839. float: left;
  840. }
  841. #volume-container-admin {
  842. display: inline-block;
  843. width: 174px;
  844. margin-left: 10px;
  845. }
  846. #volume-container-admin > .slider {
  847. width: 150px !important;
  848. padding-left: 12px;
  849. padding-right: 12px;
  850. margin-left: 12px;
  851. }
  852. #volume-icon{
  853. /*margin-left: 320px !important;*/
  854. margin: 0 !important;
  855. float: left;
  856. margin-top: 7px !important;
  857. }
  858. #settings{
  859. margin-top: 10px;
  860. margin-left: 10px;
  861. }