app.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269
  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. background: #50a3a2;
  152. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  153. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  154. }
  155. body {
  156. font-family: 'Source Sans Pro', sans-serif;
  157. font-weight: 300;
  158. }
  159. body ::-webkit-input-placeholder {
  160. /* WebKit browsers */
  161. font-family: 'Source Sans Pro', sans-serif;
  162. font-weight: 300;
  163. }
  164. body :-moz-placeholder {
  165. /* Mozilla Firefox 4 to 18 */
  166. font-family: 'Source Sans Pro', sans-serif;
  167. opacity: 1;
  168. font-weight: 300;
  169. }
  170. body ::-moz-placeholder {
  171. /* Mozilla Firefox 19+ */
  172. font-family: 'Source Sans Pro', sans-serif;
  173. opacity: 1;
  174. font-weight: 300;
  175. }
  176. body :-ms-input-placeholder {
  177. /* Internet Explorer 10+ */
  178. font-family: 'Source Sans Pro', sans-serif;
  179. font-weight: 300;
  180. }
  181. ul {
  182. list-style: none;
  183. }
  184. .navbar {
  185. background-color: transparent;
  186. border: none;
  187. }
  188. .navbar a {
  189. color: white !important;
  190. font-size: 1.3em;
  191. }
  192. .navbar-default .navbar-nav > .active > a,
  193. .navbar-default .navbar-nav > .active > a:hover,
  194. .navbar-default .navbar-nav > .active > a:focus {
  195. background-color: transparent;
  196. font-weight: 900;
  197. }
  198. .homepage {
  199. background: #50a3a2;
  200. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  201. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  202. /*top: 20%;*/
  203. width: 100%;
  204. overflow-x: hidden;
  205. overflow-y: auto;
  206. /*padding-bottom: 60px;*/
  207. min-height: 100%;
  208. height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
  209. height: 100%;
  210. margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
  211. }
  212. .landing {
  213. background: #50a3a2;
  214. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  215. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  216. position: absolute;
  217. /*top: 20%;*/
  218. left: 0;
  219. width: 100%;
  220. height: 100%; /*400px*/
  221. /*margin-top: -200px;*/
  222. overflow-x: hidden;
  223. overflow-y: auto;
  224. }
  225. .admin-container {
  226. background-color: rgb(102, 205, 170);
  227. color: white;
  228. overflow-y: scroll;
  229. margin-top: 20px;
  230. }
  231. .admin-container h1 {
  232. text-align: center;
  233. margin: 0;
  234. }
  235. .admin-container p {
  236. font-size: 22px;
  237. }
  238. .admin-container a {
  239. color: white;
  240. font-size: 16px;
  241. }
  242. .container {
  243. max-width: 600px;
  244. margin: 0 auto;
  245. padding: 80px 0;
  246. height: 400px;
  247. text-align: center;
  248. }
  249. .container h1 {
  250. font-size: 40px;
  251. color: white;
  252. -webkit-transition-duration: 1s;
  253. transition-duration: 1s;
  254. -webkit-transition-timing-function: ease-in-put;
  255. transition-timing-function: ease-in-put;
  256. font-weight: 200;
  257. }
  258. .container p {
  259. font-size: 10px;
  260. color: white;
  261. -webkit-transition-duration: 1s;
  262. transition-duration: 1s;
  263. -webkit-transition-timing-function: ease-in-put;
  264. transition-timing-function: ease-in-put;
  265. font-weight: 200;
  266. }
  267. form {
  268. padding: 20px 0;
  269. position: relative;
  270. z-index: 2;
  271. }
  272. form input, .croom, .calert {
  273. -webkit-appearance: none;
  274. -moz-appearance: none;
  275. appearance: none;
  276. outline: 0;
  277. border: 1px solid rgba(255, 255, 255, 0.4);
  278. background-color: rgba(255, 255, 255, 0.2);
  279. width: 304px;
  280. border-radius: 3px;
  281. padding: 10px 15px;
  282. margin: 0 auto 10px auto;
  283. display: block;
  284. text-align: center;
  285. font-size: 18px;
  286. color: white;
  287. -webkit-transition-duration: 0.25s;
  288. transition-duration: 0.25s;
  289. font-weight: 300;
  290. }
  291. form input:hover {
  292. background-color: rgba(255, 255, 255, 0.4);
  293. }
  294. form input:focus {
  295. /*opacity: 0.4;*/
  296. width: 354px;
  297. color: white;
  298. }
  299. .g-recaptcha {
  300. -webkit-appearance: none;
  301. -moz-appearance: none;
  302. appearance: none;
  303. outline: 0;
  304. width: 304px;
  305. margin: 0 auto 10px auto;
  306. display: block;
  307. text-align: center;
  308. font-size: 18px;
  309. color: white;
  310. -webkit-transition-duration: 0.25s;
  311. transition-duration: 0.25s;
  312. font-weight: 300;
  313. }
  314. form button {
  315. -webkit-appearance: none;
  316. -moz-appearance: none;
  317. appearance: none;
  318. outline: 0;
  319. background-color: white;
  320. border: 0;
  321. padding: 10px 15px;
  322. color: #53e3a6;
  323. border-radius: 3px;
  324. width: 304px;
  325. cursor: pointer;
  326. font-size: 18px;
  327. -webkit-transition-duration: 0.25s;
  328. transition-duration: 0.25s;
  329. }
  330. ::-webkit-input-placeholder {
  331. color: white;
  332. }
  333. ::-moz-placeholder {
  334. /* Firefox 19+ */
  335. color: white;
  336. }
  337. :-ms-input-placeholder {
  338. color: white;
  339. }
  340. form button:hover {
  341. background-color: #f5f7f9;
  342. }
  343. .bg-bubbles {
  344. top: 0;
  345. left: 0;
  346. width: 100%;
  347. height: 100%;
  348. position: absolute;
  349. z-index: 1;
  350. margin: 0px;
  351. pointer-events: none;
  352. }
  353. .bg-bubbles li {
  354. position: absolute;
  355. list-style: none;
  356. display: block;
  357. width: 40px;
  358. height: 40px;
  359. border-radius: 100px;
  360. background-color: rgba(255, 255, 255, 0.15);
  361. bottom: 0px;
  362. -webkit-animation: square 25s infinite;
  363. animation: square 25s infinite;
  364. -webkit-transition-timing-function: linear;
  365. transition-timing-function: linear;
  366. }
  367. .bg-bubbles li:nth-child(1) {
  368. left: 10%;
  369. }
  370. .bg-bubbles li:nth-child(2) {
  371. left: 20%;
  372. width: 80px;
  373. height: 80px;
  374. -webkit-animation-delay: 2s;
  375. animation-delay: 2s;
  376. -webkit-animation-duration: 17s;
  377. animation-duration: 17s;
  378. }
  379. .bg-bubbles li:nth-child(3) {
  380. left: 25%;
  381. -webkit-animation-delay: 4s;
  382. animation-delay: 4s;
  383. }
  384. .bg-bubbles li:nth-child(4) {
  385. left: 40%;
  386. width: 60px;
  387. height: 60px;
  388. -webkit-animation-duration: 22s;
  389. animation-duration: 22s;
  390. background-color: rgba(255, 255, 255, 0.25);
  391. }
  392. .bg-bubbles li:nth-child(5) {
  393. left: 70%;
  394. }
  395. .bg-bubbles li:nth-child(6) {
  396. left: 80%;
  397. width: 120px;
  398. height: 120px;
  399. -webkit-animation-delay: 3s;
  400. animation-delay: 3s;
  401. background-color: rgba(255, 255, 255, 0.2);
  402. }
  403. .bg-bubbles li:nth-child(7) {
  404. left: 32%;
  405. width: 160px;
  406. height: 160px;
  407. -webkit-animation-delay: 7s;
  408. animation-delay: 7s;
  409. }
  410. .bg-bubbles li:nth-child(8) {
  411. left: 55%;
  412. width: 20px;
  413. height: 20px;
  414. -webkit-animation-delay: 15s;
  415. animation-delay: 15s;
  416. -webkit-animation-duration: 40s;
  417. animation-duration: 40s;
  418. }
  419. .bg-bubbles li:nth-child(9) {
  420. left: 25%;
  421. width: 10px;
  422. height: 10px;
  423. -webkit-animation-delay: 2s;
  424. animation-delay: 2s;
  425. -webkit-animation-duration: 40s;
  426. animation-duration: 40s;
  427. background-color: rgba(255, 255, 255, 0.3);
  428. }
  429. .bg-bubbles li:nth-child(10) {
  430. left: 80%;
  431. width: 160px;
  432. height: 160px;
  433. -webkit-animation-delay: 11s;
  434. animation-delay: 11s;
  435. }
  436. /* Tablet view fix */
  437. @media (max-width: 768px){
  438. .bg-bubbles li:nth-child(10) {
  439. display: none;
  440. }
  441. #song-media{
  442. margin-left: 0 !important;
  443. }
  444. #song-info{
  445. margin: 15px auto;
  446. width: 200px;
  447. }
  448. #settings{
  449. margin: 0 auto !important;
  450. margin-bottom: 100px !important;
  451. }
  452. #voting{
  453. margin: 0 auto !important;
  454. width: 300px !important;
  455. margin-bottom: 100px !important;
  456. }
  457. #side-panel{
  458. display: none;
  459. }
  460. }
  461. /**/
  462. @-webkit-keyframes square {
  463. 0% {
  464. -webkit-transform: translateY(0);
  465. transform: translateY(0);
  466. }
  467. 100% {
  468. -webkit-transform: translateY(-700px) rotate(600deg);
  469. transform: translateY(-700px) rotate(600deg);
  470. }
  471. }
  472. @keyframes square {
  473. 0% {
  474. -webkit-transform: translateY(0);
  475. transform: translateY(0);
  476. }
  477. 100% {
  478. -webkit-transform: translateY(-700px) rotate(600deg);
  479. transform: translateY(-700px) rotate(600deg);
  480. }
  481. }
  482. .fa-github {
  483. margin-top: 3px;
  484. }
  485. #github-login {
  486. background-color: #999;
  487. margin-bottom: 100px;
  488. }
  489. .btn-social {
  490. -webkit-appearance: none;
  491. -moz-appearance: none;
  492. appearance: none;
  493. outline: 0;
  494. border: 0;
  495. padding: 10px 15px;
  496. border-radius: 3px;
  497. width: 304px;
  498. cursor: pointer;
  499. font-size: 18px;
  500. color: #fff;
  501. }
  502. footer {
  503. text-align: center;
  504. width: 100%;
  505. height: 75px;
  506. margin-top: 75px;
  507. color: white;
  508. padding-top: 5px;
  509. }
  510. .push {
  511. height: 75px; /* .push must be the same height as .footer */
  512. }
  513. footer a {
  514. color: white;
  515. }
  516. footer a:hover {
  517. color: white;
  518. }
  519. footer p {
  520. margin: 0 !important;
  521. }
  522. footer .fa {
  523. font-size: 2em;
  524. }
  525. .button-nowidth {
  526. -webkit-appearance: none;
  527. -moz-appearance: none;
  528. appearance: none;
  529. outline: 0;
  530. background-color: white;
  531. border: 0;
  532. padding: 10px 15px;
  533. color: #53e3a6;
  534. border-radius: 3px;
  535. cursor: pointer;
  536. font-size: 18px;
  537. -webkit-transition-duration: 0.25s;
  538. transition-duration: 0.25s;
  539. }
  540. .button-nowidth:hover {
  541. background-color: #f5f7f9;
  542. }
  543. .button {
  544. -webkit-appearance: none;
  545. -moz-appearance: none;
  546. appearance: none;
  547. outline: 0;
  548. background-color: white;
  549. border: 0;
  550. padding: 10px 15px;
  551. color: #53e3a6;
  552. border-radius: 3px;
  553. width: 304px;
  554. cursor: pointer;
  555. font-size: 18px;
  556. -webkit-transition-duration: 0.25s;
  557. transition-duration: 0.25s;
  558. }
  559. .button:hover {
  560. background-color: #f5f7f9;
  561. }
  562. .station {
  563. background-color: rgba(102, 205, 170, 0.7);
  564. height: 300px;
  565. width: 300px;
  566. border-radius: 100%;
  567. text-align: center;
  568. color: white;
  569. font-family: Sans-serif;
  570. /*float: left;*/
  571. margin-right: auto;
  572. margin-left: auto;
  573. position: relative;
  574. }
  575. .station > h3 {
  576. line-height: 200px;
  577. font-size: 42px;
  578. }
  579. .station > h5 {
  580. margin-top: -40px;
  581. font-size: 15px;
  582. }
  583. .room-name {
  584. font-size: 3.5em;
  585. color: white;
  586. font-weight: 600;
  587. text-align: center;
  588. }
  589. .room-title {
  590. font-size: 2.5em;
  591. color: white;
  592. font-weight: 600;
  593. }
  594. .room-artist {
  595. font-size: 1.5em;
  596. color: white;
  597. }
  598. #seeker-bar {
  599. background-color: black;
  600. width: 0;
  601. height: 10px;
  602. clear: both;
  603. background-color: rgba(16, 140, 146, 0.8);
  604. }
  605. .song-input {
  606. -webkit-appearance: none;
  607. -moz-appearance: none;
  608. appearance: none;
  609. outline: 0;
  610. border: 1px solid rgba(255, 255, 255, 0.4);
  611. background-color: rgba(255, 255, 255, 0.2);
  612. width: 304px;
  613. border-radius: 3px;
  614. padding: 10px 15px;
  615. margin: 1em auto 10px auto;
  616. display: block;
  617. text-align: center;
  618. font-size: 18px;
  619. color: white;
  620. -webkit-transition-duration: 0.25s;
  621. transition-duration: 0.25s;
  622. font-weight: 300;
  623. }
  624. #chat-input {
  625. -webkit-appearance: none;
  626. -moz-appearance: none;
  627. appearance: none;
  628. outline: 0;
  629. border: 1px solid white;
  630. background-color: transparent;
  631. width: 90%;
  632. border-radius: 3px;
  633. padding: 10px 15px;
  634. margin: 1em auto 10px auto;
  635. text-align: left;
  636. font-size: 18px;
  637. color: white;
  638. -webkit-transition-duration: 0.25s;
  639. transition-duration: 0.25s;
  640. font-weight: 300;
  641. bottom: 0;
  642. }
  643. .song-input-select {
  644. -webkit-appearance: none;
  645. -moz-appearance: none;
  646. appearance: none;
  647. outline: 0;
  648. border: 1px solid rgba(255, 255, 255, 0.4);
  649. background-color: rgba(255, 255, 255, 0.2);
  650. width: 304px;
  651. border-radius: 3px;
  652. padding: 10px 15px;
  653. margin: 1em auto 10px auto;
  654. display: block;
  655. text-align: center;
  656. font-size: 18px;
  657. color: white;
  658. -webkit-transition-duration: 0.25s;
  659. transition-duration: 0.25s;
  660. font-weight: 300;
  661. }
  662. .song-input:hover {
  663. background-color: rgba(255, 255, 255, 0.4);
  664. }
  665. .song-input:focus {
  666. background-color: rgba(255, 255, 255, 0.4);
  667. }
  668. .song-input-select:hover {
  669. background-color: rgba(255, 255, 255, 0.4);
  670. }
  671. .song-input-select > option {
  672. color: black;
  673. background-color: rgba(255, 255, 255, 0.2);
  674. }
  675. .song-input:focus {
  676. width: 354px;
  677. color: white;
  678. }
  679. #search-song {
  680. display: block;
  681. margin: 0 auto;
  682. }
  683. #song-results {
  684. margin: 0 auto;
  685. color: white;
  686. margin-top: 1em;
  687. font-size: 1.5em;
  688. text-align: center;
  689. }
  690. #song-results p {
  691. margin: 0;
  692. padding: 5px;
  693. }
  694. #song-results p:hover {
  695. background-color: cadetblue;
  696. cursor: pointer;
  697. }
  698. #player {
  699. }
  700. .hidden {
  701. visibility: hidden;
  702. }
  703. .footerButtons {
  704. background: none !important;
  705. border: none;
  706. padding: 0 !important;
  707. font: inherit;
  708. cursor: pointer;
  709. }
  710. .footerButtons:hover {
  711. background-color: #f5f7f9;
  712. }
  713. .song-img {
  714. width: 210px;
  715. height: 210px;
  716. }
  717. #seeker-container {
  718. width: calc(100% - 70px);
  719. margin-left: 30px;
  720. margin-right: 35px;
  721. overflow: hidden;
  722. }
  723. .pl-container {
  724. color: #53e3a6;
  725. background-color: white;
  726. border-radius: 3px;
  727. font-size: 18px;
  728. }
  729. .pl-container h4 {
  730. text-align: center;
  731. font-size: 40px;
  732. margin-bottom: 10px;
  733. }
  734. #spinner {
  735. font-size: 200px;
  736. color: bisque;
  737. }
  738. #spinner-container {
  739. margin-left: auto;
  740. margin-right: auto;
  741. width: 200px;
  742. margin-top: 10%;
  743. }
  744. #croom_container, #calert_container {
  745. margin-left: auto;
  746. margin-right: auto;
  747. margin-bottom: 10px;
  748. width: 304px !important;
  749. }
  750. .croom_label, .calert_label {
  751. color: white;
  752. }
  753. .croom, .calert {
  754. width: 304px !important;
  755. }
  756. #calert-priority > option {
  757. color: black;
  758. }
  759. #spinner {
  760. font-size: 200px;
  761. color: bisque;
  762. }
  763. #spinner-container {
  764. margin-left: auto;
  765. margin-right: auto;
  766. width: 200px;
  767. margin-top: 10%;
  768. }
  769. .modal-content {
  770. background-color: rgb(107, 197, 164);
  771. color: white;
  772. }
  773. .song-input-label {
  774. width: 100%;
  775. text-align: center;
  776. }
  777. .station_link {
  778. position: absolute;
  779. width: 100%;
  780. height: 100%;
  781. top: 0;
  782. left: 0;
  783. border-radius: 100%;
  784. }
  785. ul#playlist{
  786. margin-top: 50px;
  787. padding-left: 5px;
  788. }
  789. #playlist {
  790. margin: 0;
  791. color: white;
  792. font-size: 21px;
  793. max-height: 100%;
  794. overflow: auto;
  795. }
  796. #s2 {
  797. opacity: 0.66666666666666;
  798. }
  799. #s3 {
  800. opacity: 0.33333333333333;
  801. }
  802. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  803. display: block;
  804. margin: 0 auto;
  805. }
  806. .alert {
  807. text-align: center;
  808. }
  809. @media (max-width: 992px) {
  810. /* some think */
  811. #s3 {
  812. visibility: hidden;
  813. height: 0;
  814. }
  815. }
  816. @media (max-width: 768px) {
  817. /* some think */
  818. #s2 {
  819. visibility: hidden;
  820. height: 0;
  821. }
  822. }
  823. .column-small {
  824. width: 1px;
  825. }
  826. #return {
  827. display: block;
  828. margin: 0 auto 20px auto;
  829. }
  830. #song-media {
  831. margin-left: 10px;
  832. min-height: 460px;
  833. }
  834. #station-main {
  835. margin: 0;
  836. padding: 0;
  837. }
  838. #station-main nav {
  839. height: 50px;
  840. color: white;
  841. }
  842. /*Navbar HAMBURGUR*/
  843. .navbar-default .navbar-toggle .icon-bar{
  844. background-color: white;
  845. }
  846. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  847. background-color: transparent;
  848. }
  849. .navbar-default .navbar-toggle{
  850. background-color: transparent;
  851. }
  852. nav form{
  853. height: 0;
  854. }
  855. nav form input[type="image"]{
  856. width: 100px;
  857. background-color: transparent !important;
  858. border: none !important;
  859. margin-top: -15px;
  860. }
  861. #station-main nav i {
  862. margin-left: 1em;
  863. font-size: 2em;
  864. }
  865. #station-main nav h3 {
  866. display: inline-block;
  867. margin: 10px auto;
  868. margin-left: 50%;
  869. font-size: 2em;
  870. }
  871. #side-panel {
  872. height: 100vh;
  873. padding-left: 0;
  874. padding-right: 0;
  875. background-color: rgba(255, 255, 255, 0.4);
  876. }
  877. .embed-responsive {
  878. margin-top: 15px;
  879. }
  880. #header {
  881. margin-bottom: 0px;
  882. }
  883. .user-stat {
  884. font-size: 20px;
  885. color: #53e3a6;
  886. }
  887. #profile-name {
  888. font-size: 60px;
  889. color: #FFFFFF;
  890. margin-right: auto;
  891. margin-left: auto;
  892. text-align: center;
  893. }
  894. .admin-queue-panel:first-child {
  895. margin-top: 20px;
  896. }
  897. #songs {
  898. margin-top: -200px;
  899. margin-bottom: 20px;
  900. }
  901. .back {
  902. color: white;
  903. }
  904. .back:hover {
  905. color: white;
  906. }
  907. #volume-container {
  908. width: 172px; /*12.5 px each side*/
  909. float: right;
  910. height: 100%;
  911. }
  912. #volume-container > .slider {
  913. top: 40%;
  914. transform: translateY(-40%);
  915. padding-right: 12px;
  916. padding-left: 12px;
  917. margin-left: 12px;
  918. float: left;
  919. }
  920. #volume-container-admin {
  921. display: inline-block;
  922. width: 174px;
  923. margin-left: 10px;
  924. }
  925. #volume-container-admin > .slider {
  926. width: 150px !important;
  927. padding-left: 12px;
  928. padding-right: 12px;
  929. margin-left: 12px;
  930. }
  931. #volume-icon {
  932. /*margin-left: 320px !important;*/
  933. margin: 0 !important;
  934. float: left;
  935. margin-top: 7px !important;
  936. width: 12px;
  937. }
  938. #settings {
  939. margin-top: 10px;
  940. margin-left: 10px;
  941. }
  942. #voting {
  943. margin-top: 10px;
  944. margin-left: 10px;
  945. }
  946. #loginregistercontainer {
  947. margin-bottom: 100px;
  948. }
  949. .admin-header {
  950. color: white;
  951. }
  952. .admin-panel-body {
  953. max-height: 400px;
  954. overflow-y: scroll;
  955. overflow-x: hidden;
  956. }
  957. .terms, .privacy, .about {
  958. color: white;
  959. }
  960. .about a{
  961. color: white;
  962. }
  963. #play, #pause, #skip, #shuffle {
  964. cursor: pointer;
  965. }
  966. .delete-room {
  967. display: inline-block;
  968. cursor: pointer;
  969. }
  970. .delete-room:hover {
  971. color: red;
  972. }
  973. .panel-title {
  974. display: inline-block;
  975. }
  976. .report-layer-1 {
  977. margin-left: 19%;
  978. }
  979. .report-layer-2 {
  980. margin-left: 80px;
  981. }
  982. .other-textarea {
  983. outline: 0px;
  984. border: 1px solid rgba(255, 255, 255, 0.4);
  985. width: 304px;
  986. border-radius: 3px;
  987. padding: 10px 15px;
  988. margin: 5px -285.578px 10px 0px;
  989. display: block;
  990. text-align: left;
  991. font-size: 18px;
  992. color: white;
  993. transition-duration: 0.25s;
  994. font-weight: 300;
  995. background-color: rgba(255, 255, 255, 0.2);
  996. resize: vertical;
  997. }
  998. #room-header {
  999. position: absolute;
  1000. left: 0;
  1001. right: 0;
  1002. margin-left: auto;
  1003. margin-right: auto;
  1004. width: 100px;
  1005. }
  1006. #room-icons {
  1007. margin-top: 11px;
  1008. float: left;
  1009. }
  1010. #time-display {
  1011. color: white;
  1012. }
  1013. .action-button {
  1014. float: left;
  1015. width: 100%;
  1016. }
  1017. .chat-message {
  1018. font-size: 20px;
  1019. color: white;
  1020. }
  1021. #chat-ul {
  1022. overflow-y: hidden;
  1023. margin: 0;
  1024. padding: 0 15px 0 15px;
  1025. padding-bottom: 20px;
  1026. word-break: break-all;
  1027. }
  1028. .chat-message:nth-child(even) {
  1029. color: white;
  1030. }
  1031. .chat-message:nth-child(odd) {
  1032. color: darkblue;
  1033. }
  1034. #submit{
  1035. margin-left: 10px;
  1036. font-size: 1.5em;
  1037. padding-top: 10px;
  1038. cursor: pointer;
  1039. display: inline-block;
  1040. }
  1041. #chat-input-div {
  1042. width: 100%;
  1043. padding-left: 15px;
  1044. padding-right: 15px;
  1045. }
  1046. .rank-admin {
  1047. color: crimson;
  1048. font-size: 20px;
  1049. font-weight: bold;
  1050. }
  1051. .rank-mod {
  1052. color: darkgoldenrod;
  1053. font-size: 20px;
  1054. font-weight: bold;
  1055. }
  1056. .rank-default {
  1057. font-size: 0px;
  1058. }
  1059. .row {
  1060. margin: 0;
  1061. }
  1062. .sidebar-content {
  1063. height: calc(100% - 42px);
  1064. }
  1065. #chat {
  1066. height:100%;
  1067. overflow: auto;
  1068. }
  1069. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1070. background-color: transparent;
  1071. color:#ffffff;
  1072. }
  1073. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1074. background-color: transparent;
  1075. color:#ffffff;
  1076. }
  1077. #doorbell-button{
  1078. margin-right: 30em;
  1079. }
  1080. #search-playlist{
  1081. position: absolute;
  1082. outline: 0;
  1083. border: none;
  1084. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1085. background-color: #50a3a2;
  1086. width: 100%;
  1087. padding: 10px 15px;
  1088. margin: 0 auto 10px auto;
  1089. display: block;
  1090. text-align: center;
  1091. font-size: 18px;
  1092. color: white;
  1093. }
  1094. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1095. ::-webkit-scrollbar {
  1096. width: 8px;
  1097. }
  1098. ::-webkit-scrollbar-track {
  1099. border-radius: 10px;
  1100. }
  1101. ::-webkit-scrollbar-thumb {
  1102. border-radius: 10px;
  1103. background-color: white;
  1104. }
  1105. ::-webkit-scrollbar-track-piece {
  1106. background: #50a3a2;
  1107. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  1108. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  1109. }