app.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272
  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. body{
  439. height: auto !important;
  440. }
  441. .bg-bubbles li:nth-child(10) {
  442. display: none;
  443. }
  444. #song-media{
  445. margin-left: 0 !important;
  446. }
  447. #song-info{
  448. margin: 15px auto;
  449. width: 200px;
  450. }
  451. #settings{
  452. margin: 0 auto !important;
  453. margin-bottom: 100px !important;
  454. }
  455. #voting{
  456. margin: 0 auto !important;
  457. width: 300px !important;
  458. margin-bottom: 100px !important;
  459. }
  460. #side-panel{
  461. display: none;
  462. }
  463. }
  464. /**/
  465. @-webkit-keyframes square {
  466. 0% {
  467. -webkit-transform: translateY(0);
  468. transform: translateY(0);
  469. }
  470. 100% {
  471. -webkit-transform: translateY(-700px) rotate(600deg);
  472. transform: translateY(-700px) rotate(600deg);
  473. }
  474. }
  475. @keyframes square {
  476. 0% {
  477. -webkit-transform: translateY(0);
  478. transform: translateY(0);
  479. }
  480. 100% {
  481. -webkit-transform: translateY(-700px) rotate(600deg);
  482. transform: translateY(-700px) rotate(600deg);
  483. }
  484. }
  485. .fa-github {
  486. margin-top: 3px;
  487. }
  488. #github-login {
  489. background-color: #999;
  490. margin-bottom: 100px;
  491. }
  492. .btn-social {
  493. -webkit-appearance: none;
  494. -moz-appearance: none;
  495. appearance: none;
  496. outline: 0;
  497. border: 0;
  498. padding: 10px 15px;
  499. border-radius: 3px;
  500. width: 304px;
  501. cursor: pointer;
  502. font-size: 18px;
  503. color: #fff;
  504. }
  505. footer {
  506. text-align: center;
  507. width: 100%;
  508. height: 75px;
  509. margin-top: 75px;
  510. color: white;
  511. padding-top: 5px;
  512. }
  513. .push {
  514. height: 75px; /* .push must be the same height as .footer */
  515. }
  516. footer a {
  517. color: white;
  518. }
  519. footer a:hover {
  520. color: white;
  521. }
  522. footer p {
  523. margin: 0 !important;
  524. }
  525. footer .fa {
  526. font-size: 2em;
  527. }
  528. .button-nowidth {
  529. -webkit-appearance: none;
  530. -moz-appearance: none;
  531. appearance: none;
  532. outline: 0;
  533. background-color: white;
  534. border: 0;
  535. padding: 10px 15px;
  536. color: #53e3a6;
  537. border-radius: 3px;
  538. cursor: pointer;
  539. font-size: 18px;
  540. -webkit-transition-duration: 0.25s;
  541. transition-duration: 0.25s;
  542. }
  543. .button-nowidth:hover {
  544. background-color: #f5f7f9;
  545. }
  546. .button {
  547. -webkit-appearance: none;
  548. -moz-appearance: none;
  549. appearance: none;
  550. outline: 0;
  551. background-color: white;
  552. border: 0;
  553. padding: 10px 15px;
  554. color: #53e3a6;
  555. border-radius: 3px;
  556. width: 304px;
  557. cursor: pointer;
  558. font-size: 18px;
  559. -webkit-transition-duration: 0.25s;
  560. transition-duration: 0.25s;
  561. }
  562. .button:hover {
  563. background-color: #f5f7f9;
  564. }
  565. .station {
  566. background-color: rgba(102, 205, 170, 0.7);
  567. height: 300px;
  568. width: 300px;
  569. border-radius: 100%;
  570. text-align: center;
  571. color: white;
  572. font-family: Sans-serif;
  573. /*float: left;*/
  574. margin-right: auto;
  575. margin-left: auto;
  576. position: relative;
  577. }
  578. .station > h3 {
  579. line-height: 200px;
  580. font-size: 42px;
  581. }
  582. .station > h5 {
  583. margin-top: -40px;
  584. font-size: 15px;
  585. }
  586. .room-name {
  587. font-size: 3.5em;
  588. color: white;
  589. font-weight: 600;
  590. text-align: center;
  591. }
  592. .room-title {
  593. font-size: 2.5em;
  594. color: white;
  595. font-weight: 600;
  596. }
  597. .room-artist {
  598. font-size: 1.5em;
  599. color: white;
  600. }
  601. #seeker-bar {
  602. background-color: black;
  603. width: 0;
  604. height: 10px;
  605. clear: both;
  606. background-color: rgba(16, 140, 146, 0.8);
  607. }
  608. .song-input {
  609. -webkit-appearance: none;
  610. -moz-appearance: none;
  611. appearance: none;
  612. outline: 0;
  613. border: 1px solid rgba(255, 255, 255, 0.4);
  614. background-color: rgba(255, 255, 255, 0.2);
  615. width: 304px;
  616. border-radius: 3px;
  617. padding: 10px 15px;
  618. margin: 1em auto 10px auto;
  619. display: block;
  620. text-align: center;
  621. font-size: 18px;
  622. color: white;
  623. -webkit-transition-duration: 0.25s;
  624. transition-duration: 0.25s;
  625. font-weight: 300;
  626. }
  627. #chat-input {
  628. -webkit-appearance: none;
  629. -moz-appearance: none;
  630. appearance: none;
  631. outline: 0;
  632. border: 1px solid white;
  633. background-color: transparent;
  634. width: 90%;
  635. border-radius: 3px;
  636. padding: 10px 15px;
  637. margin: 1em auto 10px auto;
  638. text-align: left;
  639. font-size: 18px;
  640. color: white;
  641. -webkit-transition-duration: 0.25s;
  642. transition-duration: 0.25s;
  643. font-weight: 300;
  644. bottom: 0;
  645. }
  646. .song-input-select {
  647. -webkit-appearance: none;
  648. -moz-appearance: none;
  649. appearance: none;
  650. outline: 0;
  651. border: 1px solid rgba(255, 255, 255, 0.4);
  652. background-color: rgba(255, 255, 255, 0.2);
  653. width: 304px;
  654. border-radius: 3px;
  655. padding: 10px 15px;
  656. margin: 1em auto 10px auto;
  657. display: block;
  658. text-align: center;
  659. font-size: 18px;
  660. color: white;
  661. -webkit-transition-duration: 0.25s;
  662. transition-duration: 0.25s;
  663. font-weight: 300;
  664. }
  665. .song-input:hover {
  666. background-color: rgba(255, 255, 255, 0.4);
  667. }
  668. .song-input:focus {
  669. background-color: rgba(255, 255, 255, 0.4);
  670. }
  671. .song-input-select:hover {
  672. background-color: rgba(255, 255, 255, 0.4);
  673. }
  674. .song-input-select > option {
  675. color: black;
  676. background-color: rgba(255, 255, 255, 0.2);
  677. }
  678. .song-input:focus {
  679. width: 354px;
  680. color: white;
  681. }
  682. #search-song {
  683. display: block;
  684. margin: 0 auto;
  685. }
  686. #song-results {
  687. margin: 0 auto;
  688. color: white;
  689. margin-top: 1em;
  690. font-size: 1.5em;
  691. text-align: center;
  692. }
  693. #song-results p {
  694. margin: 0;
  695. padding: 5px;
  696. }
  697. #song-results p:hover {
  698. background-color: cadetblue;
  699. cursor: pointer;
  700. }
  701. #player {
  702. }
  703. .hidden {
  704. visibility: hidden;
  705. }
  706. .footerButtons {
  707. background: none !important;
  708. border: none;
  709. padding: 0 !important;
  710. font: inherit;
  711. cursor: pointer;
  712. }
  713. .footerButtons:hover {
  714. background-color: #f5f7f9;
  715. }
  716. .song-img {
  717. width: 210px;
  718. height: 210px;
  719. }
  720. #seeker-container {
  721. width: calc(100% - 70px);
  722. margin-left: 30px;
  723. margin-right: 35px;
  724. overflow: hidden;
  725. }
  726. .pl-container {
  727. color: #53e3a6;
  728. background-color: white;
  729. border-radius: 3px;
  730. font-size: 18px;
  731. }
  732. .pl-container h4 {
  733. text-align: center;
  734. font-size: 40px;
  735. margin-bottom: 10px;
  736. }
  737. #spinner {
  738. font-size: 200px;
  739. color: bisque;
  740. }
  741. #spinner-container {
  742. margin-left: auto;
  743. margin-right: auto;
  744. width: 200px;
  745. margin-top: 10%;
  746. }
  747. #croom_container, #calert_container {
  748. margin-left: auto;
  749. margin-right: auto;
  750. margin-bottom: 10px;
  751. width: 304px !important;
  752. }
  753. .croom_label, .calert_label {
  754. color: white;
  755. }
  756. .croom, .calert {
  757. width: 304px !important;
  758. }
  759. #calert-priority > option {
  760. color: black;
  761. }
  762. #spinner {
  763. font-size: 200px;
  764. color: bisque;
  765. }
  766. #spinner-container {
  767. margin-left: auto;
  768. margin-right: auto;
  769. width: 200px;
  770. margin-top: 10%;
  771. }
  772. .modal-content {
  773. background-color: rgb(107, 197, 164);
  774. color: white;
  775. }
  776. .song-input-label {
  777. width: 100%;
  778. text-align: center;
  779. }
  780. .station_link {
  781. position: absolute;
  782. width: 100%;
  783. height: 100%;
  784. top: 0;
  785. left: 0;
  786. border-radius: 100%;
  787. }
  788. ul#playlist{
  789. margin-top: 50px;
  790. padding-left: 5px;
  791. }
  792. #playlist {
  793. margin: 0;
  794. color: white;
  795. font-size: 21px;
  796. max-height: 100%;
  797. overflow: auto;
  798. }
  799. #s2 {
  800. opacity: 0.66666666666666;
  801. }
  802. #s3 {
  803. opacity: 0.33333333333333;
  804. }
  805. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  806. display: block;
  807. margin: 0 auto;
  808. }
  809. .alert {
  810. text-align: center;
  811. }
  812. @media (max-width: 992px) {
  813. /* some think */
  814. #s3 {
  815. visibility: hidden;
  816. height: 0;
  817. }
  818. }
  819. @media (max-width: 768px) {
  820. /* some think */
  821. #s2 {
  822. visibility: hidden;
  823. height: 0;
  824. }
  825. }
  826. .column-small {
  827. width: 1px;
  828. }
  829. #return {
  830. display: block;
  831. margin: 0 auto 20px auto;
  832. }
  833. #song-media {
  834. margin-left: 10px;
  835. min-height: 460px;
  836. }
  837. #station-main {
  838. margin: 0;
  839. padding: 0;
  840. }
  841. #station-main nav {
  842. height: 50px;
  843. color: white;
  844. }
  845. /*Navbar HAMBURGUR*/
  846. .navbar-default .navbar-toggle .icon-bar{
  847. background-color: white;
  848. }
  849. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  850. background-color: transparent;
  851. }
  852. .navbar-default .navbar-toggle{
  853. background-color: transparent;
  854. }
  855. nav form{
  856. height: 0;
  857. }
  858. nav form input[type="image"]{
  859. width: 100px;
  860. background-color: transparent !important;
  861. border: none !important;
  862. margin-top: -15px;
  863. }
  864. #station-main nav i {
  865. margin-left: 1em;
  866. font-size: 2em;
  867. }
  868. #station-main nav h3 {
  869. display: inline-block;
  870. margin: 10px auto;
  871. margin-left: 50%;
  872. font-size: 2em;
  873. }
  874. #side-panel {
  875. height: 100vh;
  876. padding-left: 0;
  877. padding-right: 0;
  878. background-color: rgba(255, 255, 255, 0.4);
  879. }
  880. .embed-responsive {
  881. margin-top: 15px;
  882. }
  883. #header {
  884. margin-bottom: 0px;
  885. }
  886. .user-stat {
  887. font-size: 20px;
  888. color: #53e3a6;
  889. }
  890. #profile-name {
  891. font-size: 60px;
  892. color: #FFFFFF;
  893. margin-right: auto;
  894. margin-left: auto;
  895. text-align: center;
  896. }
  897. .admin-queue-panel:first-child {
  898. margin-top: 20px;
  899. }
  900. #songs {
  901. margin-top: -200px;
  902. margin-bottom: 20px;
  903. }
  904. .back {
  905. color: white;
  906. }
  907. .back:hover {
  908. color: white;
  909. }
  910. #volume-container {
  911. width: 172px; /*12.5 px each side*/
  912. float: right;
  913. height: 100%;
  914. }
  915. #volume-container > .slider {
  916. top: 40%;
  917. transform: translateY(-40%);
  918. padding-right: 12px;
  919. padding-left: 12px;
  920. margin-left: 12px;
  921. float: left;
  922. }
  923. #volume-container-admin {
  924. display: inline-block;
  925. width: 174px;
  926. margin-left: 10px;
  927. }
  928. #volume-container-admin > .slider {
  929. width: 150px !important;
  930. padding-left: 12px;
  931. padding-right: 12px;
  932. margin-left: 12px;
  933. }
  934. #volume-icon {
  935. /*margin-left: 320px !important;*/
  936. margin: 0 !important;
  937. float: left;
  938. margin-top: 7px !important;
  939. width: 12px;
  940. }
  941. #settings {
  942. margin-top: 10px;
  943. margin-left: 10px;
  944. }
  945. #voting {
  946. margin-top: 10px;
  947. margin-left: 10px;
  948. }
  949. #loginregistercontainer {
  950. margin-bottom: 100px;
  951. }
  952. .admin-header {
  953. color: white;
  954. }
  955. .admin-panel-body {
  956. max-height: 400px;
  957. overflow-y: scroll;
  958. overflow-x: hidden;
  959. }
  960. .terms, .privacy, .about {
  961. color: white;
  962. }
  963. .about a{
  964. color: white;
  965. }
  966. #play, #pause, #skip, #shuffle {
  967. cursor: pointer;
  968. }
  969. .delete-room {
  970. display: inline-block;
  971. cursor: pointer;
  972. }
  973. .delete-room:hover {
  974. color: red;
  975. }
  976. .panel-title {
  977. display: inline-block;
  978. }
  979. .report-layer-1 {
  980. margin-left: 19%;
  981. }
  982. .report-layer-2 {
  983. margin-left: 80px;
  984. }
  985. .other-textarea {
  986. outline: 0px;
  987. border: 1px solid rgba(255, 255, 255, 0.4);
  988. width: 304px;
  989. border-radius: 3px;
  990. padding: 10px 15px;
  991. margin: 5px -285.578px 10px 0px;
  992. display: block;
  993. text-align: left;
  994. font-size: 18px;
  995. color: white;
  996. transition-duration: 0.25s;
  997. font-weight: 300;
  998. background-color: rgba(255, 255, 255, 0.2);
  999. resize: vertical;
  1000. }
  1001. #room-header {
  1002. position: absolute;
  1003. left: 0;
  1004. right: 0;
  1005. margin-left: auto;
  1006. margin-right: auto;
  1007. width: 100px;
  1008. }
  1009. #room-icons {
  1010. margin-top: 11px;
  1011. float: left;
  1012. }
  1013. #time-display {
  1014. color: white;
  1015. }
  1016. .action-button {
  1017. float: left;
  1018. width: 100%;
  1019. }
  1020. .chat-message {
  1021. font-size: 20px;
  1022. color: white;
  1023. }
  1024. #chat-ul {
  1025. overflow-y: hidden;
  1026. margin: 0;
  1027. padding: 0 15px 0 15px;
  1028. padding-bottom: 20px;
  1029. word-break: break-all;
  1030. }
  1031. .chat-message:nth-child(even) {
  1032. color: white;
  1033. }
  1034. .chat-message:nth-child(odd) {
  1035. color: darkblue;
  1036. }
  1037. #submit{
  1038. margin-left: 10px;
  1039. font-size: 1.5em;
  1040. padding-top: 10px;
  1041. cursor: pointer;
  1042. display: inline-block;
  1043. }
  1044. #chat-input-div {
  1045. width: 100%;
  1046. padding-left: 15px;
  1047. padding-right: 15px;
  1048. }
  1049. .rank-admin {
  1050. color: crimson;
  1051. font-size: 20px;
  1052. font-weight: bold;
  1053. }
  1054. .rank-mod {
  1055. color: darkgoldenrod;
  1056. font-size: 20px;
  1057. font-weight: bold;
  1058. }
  1059. .rank-default {
  1060. font-size: 0px;
  1061. }
  1062. .row {
  1063. margin: 0;
  1064. }
  1065. .sidebar-content {
  1066. height: calc(100% - 42px);
  1067. }
  1068. #chat {
  1069. height:100%;
  1070. overflow: auto;
  1071. }
  1072. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1073. background-color: transparent;
  1074. color:#ffffff;
  1075. }
  1076. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1077. background-color: transparent;
  1078. color:#ffffff;
  1079. }
  1080. #doorbell-button{
  1081. margin-right: 30em;
  1082. }
  1083. #search-playlist{
  1084. position: absolute;
  1085. outline: 0;
  1086. border: none;
  1087. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1088. background-color: #50a3a2;
  1089. width: 100%;
  1090. padding: 10px 15px;
  1091. margin: 0 auto 10px auto;
  1092. display: block;
  1093. text-align: center;
  1094. font-size: 18px;
  1095. color: white;
  1096. }
  1097. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1098. ::-webkit-scrollbar {
  1099. width: 8px;
  1100. }
  1101. ::-webkit-scrollbar-track {
  1102. border-radius: 10px;
  1103. }
  1104. ::-webkit-scrollbar-thumb {
  1105. border-radius: 10px;
  1106. background-color: white;
  1107. }
  1108. ::-webkit-scrollbar-track-piece {
  1109. background: #50a3a2;
  1110. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  1111. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  1112. }