app.css 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494
  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 div {
  232. padding-bottom: 10px;
  233. text-align: center;
  234. }
  235. .admin-container div a {
  236. text-decoration: none;
  237. font-size: 22px;
  238. padding-left: 5px;
  239. vertical-align: top;
  240. }
  241. .admin-container div a:hover {
  242. text-decoration: none;
  243. }
  244. .admin-container h1 {
  245. margin: 0;
  246. display: inline-block;
  247. }
  248. .admin-container p {
  249. font-size: 22px;
  250. }
  251. .admin-container a {
  252. color: white;
  253. font-size: 16px;
  254. }
  255. .queueTable th {
  256. font-size: 22px;
  257. text-align: center;
  258. }
  259. .queueTable td {
  260. padding: 10px;
  261. font-size: 18px;
  262. }
  263. .container {
  264. max-width: 600px;
  265. margin: 0 auto;
  266. padding: 80px 0;
  267. height: 400px;
  268. text-align: center;
  269. }
  270. .container h1 {
  271. font-size: 40px;
  272. color: white;
  273. -webkit-transition-duration: 1s;
  274. transition-duration: 1s;
  275. font-weight: 200;
  276. }
  277. .container p {
  278. font-size: 10px;
  279. color: white;
  280. -webkit-transition-duration: 1s;
  281. transition-duration: 1s;
  282. font-weight: 200;
  283. }
  284. form {
  285. padding: 20px 0;
  286. position: relative;
  287. z-index: 2;
  288. }
  289. form input, .croom, .calert {
  290. -webkit-appearance: none;
  291. -moz-appearance: none;
  292. appearance: none;
  293. outline: 0;
  294. border: 1px solid rgba(255, 255, 255, 0.4);
  295. background-color: rgba(255, 255, 255, 0.2);
  296. width: 304px;
  297. border-radius: 3px;
  298. padding: 10px 15px;
  299. margin: 0 auto 10px auto;
  300. display: block;
  301. text-align: center;
  302. font-size: 18px;
  303. color: white;
  304. -webkit-transition-duration: 0.25s;
  305. transition-duration: 0.25s;
  306. font-weight: 300;
  307. }
  308. form input:hover {
  309. background-color: rgba(255, 255, 255, 0.4);
  310. }
  311. form input:focus {
  312. /*opacity: 0.4;*/
  313. width: 354px;
  314. color: white;
  315. }
  316. .g-recaptcha {
  317. -webkit-appearance: none;
  318. -moz-appearance: none;
  319. appearance: none;
  320. outline: 0;
  321. width: 304px;
  322. margin: 0 auto 10px auto;
  323. display: block;
  324. text-align: center;
  325. font-size: 18px;
  326. color: white;
  327. -webkit-transition-duration: 0.25s;
  328. transition-duration: 0.25s;
  329. font-weight: 300;
  330. }
  331. form button {
  332. -webkit-appearance: none;
  333. -moz-appearance: none;
  334. appearance: none;
  335. outline: 0;
  336. background-color: white;
  337. border: 0;
  338. padding: 10px 15px;
  339. color: #53e3a6;
  340. border-radius: 3px;
  341. width: 304px;
  342. cursor: pointer;
  343. font-size: 18px;
  344. -webkit-transition-duration: 0.25s;
  345. transition-duration: 0.25s;
  346. }
  347. ::-webkit-input-placeholder {
  348. color: white;
  349. }
  350. ::-moz-placeholder {
  351. /* Firefox 19+ */
  352. color: white;
  353. }
  354. :-ms-input-placeholder {
  355. color: white;
  356. }
  357. form button:hover {
  358. background-color: #f5f7f9;
  359. }
  360. .bg-bubbles {
  361. top: 0;
  362. left: 0;
  363. width: 100%;
  364. height: 100%;
  365. position: absolute;
  366. z-index: 1;
  367. margin: 0px;
  368. pointer-events: none;
  369. overflow: hidden;
  370. }
  371. .bg-bubbles li {
  372. position: absolute;
  373. list-style: none;
  374. display: block;
  375. width: 40px;
  376. height: 40px;
  377. border-radius: 100px;
  378. /*background-color: rgba(255, 255, 255, 0.15);*/
  379. bottom: 0px;
  380. -webkit-animation: square 25s infinite;
  381. animation: square 25s infinite;
  382. -webkit-transition-timing-function: linear;
  383. transition-timing-function: linear;
  384. opacity: 0.5;
  385. }
  386. .bg-bubbles li:nth-child(1) {
  387. left: 10%;
  388. }
  389. .bg-bubbles li:nth-child(2) {
  390. left: 20%;
  391. width: 80px;
  392. height: 80px;
  393. -webkit-animation-delay: 2s;
  394. animation-delay: 2s;
  395. -webkit-animation-duration: 17s;
  396. animation-duration: 17s;
  397. }
  398. .bg-bubbles li:nth-child(3) {
  399. left: 25%;
  400. -webkit-animation-delay: 4s;
  401. animation-delay: 4s;
  402. }
  403. .bg-bubbles li:nth-child(4) {
  404. left: 40%;
  405. width: 60px;
  406. height: 60px;
  407. -webkit-animation-duration: 22s;
  408. animation-duration: 22s;
  409. /*background-color: rgba(255, 255, 255, 0.25);*/
  410. }
  411. .bg-bubbles li:nth-child(5) {
  412. left: 70%;
  413. }
  414. .bg-bubbles li:nth-child(6) {
  415. left: 80%;
  416. width: 120px;
  417. height: 120px;
  418. -webkit-animation-delay: 3s;
  419. animation-delay: 3s;
  420. /*background-color: rgba(255, 255, 255, 0.2);*/
  421. }
  422. .bg-bubbles li:nth-child(7) {
  423. left: 32%;
  424. width: 160px;
  425. height: 160px;
  426. -webkit-animation-delay: 7s;
  427. animation-delay: 7s;
  428. }
  429. .bg-bubbles li:nth-child(8) {
  430. left: 55%;
  431. width: 20px;
  432. height: 20px;
  433. -webkit-animation-delay: 15s;
  434. animation-delay: 15s;
  435. -webkit-animation-duration: 40s;
  436. animation-duration: 40s;
  437. }
  438. .bg-bubbles li:nth-child(9) {
  439. left: 25%;
  440. width: 10px;
  441. height: 10px;
  442. -webkit-animation-delay: 2s;
  443. animation-delay: 2s;
  444. -webkit-animation-duration: 40s;
  445. animation-duration: 40s;
  446. /*background-color: rgba(255, 255, 255, 0.3);*/
  447. }
  448. .bg-bubbles li:nth-child(10) {
  449. left: 80%;
  450. width: 160px;
  451. height: 160px;
  452. -webkit-animation-delay: 11s;
  453. animation-delay: 11s;
  454. }
  455. .bg-bubbles img {
  456. width: 100%;
  457. height: 100%;
  458. }
  459. /* Tablet view fix */
  460. @media (max-width: 768px){
  461. body{
  462. height: auto !important;
  463. }
  464. .bg-bubbles li:nth-child(10) {
  465. display: none;
  466. }
  467. #song-media{
  468. margin-left: 0 !important;
  469. }
  470. #song-info{
  471. margin: 15px auto;
  472. width: 200px;
  473. }
  474. #settings{
  475. margin: 0 auto !important;
  476. margin-bottom: 10px !important;
  477. }
  478. #voting{
  479. margin: 0 auto !important;
  480. width: 300px !important;
  481. margin-bottom: 100px !important;
  482. }
  483. #side-panel{
  484. display: none;
  485. }
  486. }
  487. /**/
  488. @-webkit-keyframes square {
  489. 0% {
  490. -webkit-transform: translateY(-700px) rotate(600deg);
  491. transform: translateY(-700px) rotate(600deg);
  492. }
  493. 100% {
  494. -webkit-transform: translateY(0);
  495. transform: translateY(0);
  496. }
  497. }
  498. @keyframes square {
  499. 0% {
  500. -webkit-transform: translateY(-700px) rotate(600deg);
  501. transform: translateY(-700px) rotate(600deg);
  502. }
  503. 100% {
  504. -webkit-transform: translateY(0);
  505. transform: translateY(0);
  506. }
  507. }
  508. .fa-github {
  509. margin-top: 3px;
  510. }
  511. #github-login {
  512. background-color: #999;
  513. margin-bottom: 100px;
  514. }
  515. .btn-social {
  516. -webkit-appearance: none;
  517. -moz-appearance: none;
  518. appearance: none;
  519. outline: 0;
  520. border: 0;
  521. padding: 10px 15px;
  522. border-radius: 3px;
  523. width: 304px;
  524. cursor: pointer;
  525. font-size: 18px;
  526. color: #fff;
  527. }
  528. footer {
  529. text-align: center;
  530. width: 100%;
  531. height: 75px;
  532. margin-top: 75px;
  533. color: white;
  534. padding-top: 5px;
  535. }
  536. .push {
  537. height: 75px; /* .push must be the same height as .footer */
  538. }
  539. footer a {
  540. color: white;
  541. }
  542. footer a:hover {
  543. color: white;
  544. }
  545. footer p {
  546. margin: 0 !important;
  547. }
  548. footer .fa {
  549. font-size: 2em;
  550. }
  551. .button-nowidth {
  552. -webkit-appearance: none;
  553. -moz-appearance: none;
  554. appearance: none;
  555. outline: 0;
  556. background-color: white;
  557. border: 0;
  558. padding: 10px 15px;
  559. color: #53e3a6;
  560. border-radius: 3px;
  561. cursor: pointer;
  562. font-size: 18px;
  563. -webkit-transition-duration: 0.25s;
  564. transition-duration: 0.25s;
  565. }
  566. .button-nowidth:hover {
  567. background-color: #f5f7f9;
  568. }
  569. .button {
  570. -webkit-appearance: none;
  571. -moz-appearance: none;
  572. appearance: none;
  573. outline: 0;
  574. background-color: white;
  575. border: 0;
  576. padding: 10px 15px;
  577. color: #53e3a6;
  578. border-radius: 3px;
  579. width: 304px;
  580. cursor: pointer;
  581. font-size: 18px;
  582. -webkit-transition-duration: 0.25s;
  583. transition-duration: 0.25s;
  584. }
  585. .button:hover {
  586. background-color: #f5f7f9;
  587. }
  588. .station {
  589. background-color: rgba(102, 205, 170, 0.7);
  590. height: 300px;
  591. width: 300px;
  592. border-radius: 100%;
  593. text-align: center;
  594. color: white;
  595. font-family: Sans-serif;
  596. /*float: left;*/
  597. margin-right: auto;
  598. margin-left: auto;
  599. position: relative;
  600. }
  601. .station > h3 {
  602. line-height: 200px;
  603. font-size: 42px;
  604. }
  605. .station > h5 {
  606. margin-top: -40px;
  607. font-size: 15px;
  608. }
  609. .room-name {
  610. font-size: 3.5em;
  611. color: white;
  612. font-weight: 600;
  613. text-align: center;
  614. }
  615. .room-title {
  616. font-size: 2.5em;
  617. color: white;
  618. font-weight: 600;
  619. }
  620. .room-artist {
  621. font-size: 1.5em;
  622. color: white;
  623. }
  624. #seeker-bar {
  625. background-color: black;
  626. width: 0;
  627. height: 10px;
  628. clear: both;
  629. background-color: rgba(16, 140, 146, 0.8);
  630. }
  631. .song-input {
  632. -webkit-appearance: none;
  633. -moz-appearance: none;
  634. appearance: none;
  635. outline: 0;
  636. border: 1px solid rgba(255, 255, 255, 0.4);
  637. background-color: rgba(255, 255, 255, 0.2);
  638. width: 304px;
  639. border-radius: 3px;
  640. padding: 10px 15px;
  641. margin: 1em auto 10px auto;
  642. display: block;
  643. text-align: center;
  644. font-size: 18px;
  645. color: white;
  646. -webkit-transition-duration: 0.25s;
  647. transition-duration: 0.25s;
  648. font-weight: 300;
  649. }
  650. #chat-input, #global-chat-input {
  651. -webkit-appearance: none;
  652. -moz-appearance: none;
  653. appearance: none;
  654. outline: 0;
  655. border: 1px solid white;
  656. background-color: transparent;
  657. width: 100%;
  658. height: 70px;
  659. padding: 5px;
  660. border-radius: 3px;
  661. text-align: left;
  662. font-size: 18px;
  663. color: #1C39B2;
  664. -webkit-transition-duration: 0.25s;
  665. transition-duration: 0.25s;
  666. font-weight: 300;
  667. resize: none;
  668. }
  669. .song-input-select {
  670. -webkit-appearance: none;
  671. -moz-appearance: none;
  672. appearance: none;
  673. outline: 0;
  674. border: 1px solid rgba(255, 255, 255, 0.4);
  675. background-color: rgba(255, 255, 255, 0.2);
  676. width: 304px;
  677. border-radius: 3px;
  678. padding: 10px 15px;
  679. margin: 1em auto 10px auto;
  680. display: block;
  681. text-align: center;
  682. font-size: 18px;
  683. color: white;
  684. -webkit-transition-duration: 0.25s;
  685. transition-duration: 0.25s;
  686. font-weight: 300;
  687. }
  688. .song-input:hover {
  689. background-color: rgba(255, 255, 255, 0.4);
  690. }
  691. .song-input:focus {
  692. background-color: rgba(255, 255, 255, 0.4);
  693. }
  694. .song-input-select:hover {
  695. background-color: rgba(255, 255, 255, 0.4);
  696. }
  697. .song-input-select > option {
  698. color: black;
  699. background-color: rgba(255, 255, 255, 0.2);
  700. }
  701. .song-input:focus {
  702. width: 354px;
  703. color: white;
  704. }
  705. #search-song {
  706. display: block;
  707. margin: 0 auto;
  708. }
  709. #song-results {
  710. margin: 0 auto;
  711. color: white;
  712. margin-top: 1em;
  713. font-size: 1.5em;
  714. text-align: center;
  715. }
  716. #song-results p {
  717. margin: 0;
  718. padding: 5px;
  719. }
  720. #song-results p:hover {
  721. background-color: cadetblue;
  722. cursor: pointer;
  723. }
  724. #player {
  725. z-index: 10;
  726. }
  727. .hidden {
  728. visibility: hidden;
  729. }
  730. .footerButtons {
  731. background: none !important;
  732. border: none;
  733. padding: 0 !important;
  734. font: inherit;
  735. cursor: pointer;
  736. }
  737. .footerButtons:hover {
  738. background-color: #f5f7f9;
  739. }
  740. .song-img {
  741. width: 210px;
  742. height: 210px;
  743. }
  744. #seeker-container {
  745. width: calc(100% - 70px);
  746. margin-left: 30px;
  747. margin-right: 35px;
  748. overflow: hidden;
  749. }
  750. .pl-container {
  751. color: #53e3a6;
  752. background-color: white;
  753. border-radius: 3px;
  754. font-size: 18px;
  755. }
  756. .pl-container h4 {
  757. text-align: center;
  758. font-size: 40px;
  759. margin-bottom: 10px;
  760. }
  761. #spinner {
  762. font-size: 200px;
  763. color: bisque;
  764. }
  765. #spinner-container {
  766. margin-left: auto;
  767. margin-right: auto;
  768. width: 200px;
  769. margin-top: 10%;
  770. }
  771. #croom_container, #calert_container {
  772. margin-left: auto;
  773. margin-right: auto;
  774. margin-bottom: 10px;
  775. width: 304px !important;
  776. }
  777. .croom_label, .calert_label {
  778. color: white;
  779. }
  780. .croom, .calert {
  781. width: 304px !important;
  782. }
  783. #calert-priority > option {
  784. color: black;
  785. }
  786. #spinner {
  787. font-size: 200px;
  788. color: bisque;
  789. }
  790. #spinner-container {
  791. margin-left: auto;
  792. margin-right: auto;
  793. width: 200px;
  794. margin-top: 10%;
  795. }
  796. .modal-content {
  797. background-color: rgb(107, 197, 164);
  798. color: white;
  799. }
  800. .song-input-label {
  801. width: 100%;
  802. text-align: center;
  803. }
  804. .station_link {
  805. position: absolute;
  806. width: 100%;
  807. height: 100%;
  808. top: 0;
  809. left: 0;
  810. border-radius: 100%;
  811. }
  812. ul#playlist{
  813. margin-top: 50px;
  814. padding-left: 5px;
  815. }
  816. #playlist {
  817. margin: 0;
  818. color: white;
  819. font-size: 21px;
  820. max-height: 100%;
  821. height: 100%;
  822. /*overflow: auto;*/
  823. }
  824. #playlist-ul {
  825. margin: 0;
  826. color: white;
  827. font-size: 21px;
  828. max-height: calc(100% - 48px);
  829. height: calc(100% - 48px);
  830. overflow: auto;
  831. padding-left: 5px;
  832. }
  833. #s2 {
  834. opacity: 0.66666666666666;
  835. }
  836. #s3 {
  837. opacity: 0.33333333333333;
  838. }
  839. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  840. display: block;
  841. margin: 0 auto;
  842. }
  843. .alert {
  844. text-align: center;
  845. }
  846. @media (max-width: 992px) {
  847. /* some think */
  848. #s3 {
  849. visibility: hidden;
  850. height: 0;
  851. }
  852. }
  853. @media (max-width: 768px) {
  854. /* some think */
  855. #s2 {
  856. visibility: hidden;
  857. height: 0;
  858. }
  859. }
  860. .column-small {
  861. width: 1px;
  862. }
  863. #return {
  864. display: block;
  865. margin: 0 auto 20px auto;
  866. }
  867. #song-media {
  868. margin-left: 10px;
  869. min-height: 460px;
  870. }
  871. #station-main {
  872. margin: 0;
  873. padding: 0;
  874. }
  875. #station-main nav {
  876. height: 50px;
  877. color: white;
  878. }
  879. /*Navbar HAMBURGUR*/
  880. .navbar-default .navbar-toggle .icon-bar{
  881. background-color: white;
  882. }
  883. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  884. background-color: transparent;
  885. }
  886. .navbar-default .navbar-toggle{
  887. background-color: transparent;
  888. }
  889. nav form{
  890. height: 0;
  891. }
  892. nav form input[type="image"]{
  893. width: 100px;
  894. background-color: transparent !important;
  895. border: none !important;
  896. margin-top: -15px;
  897. }
  898. #station-main nav i {
  899. margin-left: 1em;
  900. font-size: 2em;
  901. }
  902. #station-main nav h3 {
  903. display: inline-block;
  904. margin: 10px auto;
  905. margin-left: 50%;
  906. font-size: 2em;
  907. }
  908. #side-panel {
  909. height: 100vh;
  910. padding-left: 0;
  911. padding-right: 0;
  912. background-color: rgba(255, 255, 255, 0.4);
  913. }
  914. .embed-responsive {
  915. margin-top: 15px;
  916. }
  917. #header {
  918. margin-bottom: 0px;
  919. }
  920. .user-stat {
  921. font-size: 20px;
  922. color: #53e3a6;
  923. }
  924. #profile-name {
  925. font-size: 60px;
  926. color: #FFFFFF;
  927. margin-right: auto;
  928. margin-left: auto;
  929. text-align: center;
  930. }
  931. .admin-queue-panel:first-child {
  932. margin-top: 20px;
  933. }
  934. #songs {
  935. margin-top: -200px;
  936. margin-bottom: 20px;
  937. }
  938. .back {
  939. color: white;
  940. }
  941. .back:hover {
  942. color: white;
  943. }
  944. #volume-container {
  945. width: 172px; /*12.5 px each side*/
  946. float: right;
  947. height: 100%;
  948. }
  949. #volume-container > .slider {
  950. top: 40%;
  951. transform: translateY(-40%);
  952. padding-right: 12px;
  953. padding-left: 12px;
  954. margin-left: 12px;
  955. float: left;
  956. }
  957. #volume-container-admin {
  958. display: inline-block;
  959. width: 174px;
  960. margin-left: 10px;
  961. }
  962. #volume-container-admin > .slider {
  963. width: 150px !important;
  964. padding-left: 12px;
  965. padding-right: 12px;
  966. margin-left: 12px;
  967. }
  968. #volume-icon {
  969. /*margin-left: 320px !important;*/
  970. margin: 0 !important;
  971. float: left;
  972. margin-top: 7px !important;
  973. width: 12px;
  974. }
  975. #settings {
  976. margin-top: 10px;
  977. margin-left: 10px;
  978. }
  979. #voting {
  980. margin-top: 10px;
  981. margin-left: 10px;
  982. }
  983. #loginregistercontainer {
  984. margin-bottom: 100px;
  985. }
  986. .admin-header {
  987. color: white;
  988. }
  989. .admin-panel-body {
  990. max-height: 400px;
  991. overflow-y: scroll;
  992. overflow-x: hidden;
  993. }
  994. .terms, .privacy, .about {
  995. color: white;
  996. }
  997. .about a{
  998. color: white;
  999. }
  1000. #play, #pause, #skip, #shuffle, #sync, #unlock, #lock {
  1001. cursor: pointer;
  1002. }
  1003. .delete-room {
  1004. display: inline-block;
  1005. cursor: pointer;
  1006. }
  1007. .delete-room:hover {
  1008. color: red;
  1009. }
  1010. .panel-title {
  1011. display: inline-block;
  1012. }
  1013. .report-layer-1 {
  1014. margin-left: 19%;
  1015. }
  1016. .report-layer-2 {
  1017. margin-left: 80px;
  1018. }
  1019. .other-textarea {
  1020. outline: 0px;
  1021. border: 1px solid rgba(255, 255, 255, 0.4);
  1022. width: 304px;
  1023. border-radius: 3px;
  1024. padding: 10px 15px;
  1025. margin: 5px -285.578px 10px 0px;
  1026. display: block;
  1027. text-align: left;
  1028. font-size: 18px;
  1029. color: white;
  1030. transition-duration: 0.25s;
  1031. font-weight: 300;
  1032. background-color: rgba(255, 255, 255, 0.2);
  1033. resize: vertical;
  1034. }
  1035. #room-header {
  1036. position: absolute;
  1037. left: 0;
  1038. right: 0;
  1039. margin-left: auto;
  1040. margin-right: auto;
  1041. width: 100px;
  1042. }
  1043. #room-icons {
  1044. margin-top: 11px;
  1045. float: left;
  1046. }
  1047. #time-display {
  1048. color: white;
  1049. }
  1050. .action-button {
  1051. float: left;
  1052. width: 100%;
  1053. }
  1054. .chat-message {
  1055. font-size: 20px;
  1056. color: white;
  1057. }
  1058. #chat-ul, #global-chat-ul {
  1059. overflow-y: hidden;
  1060. margin: 0;
  1061. padding: 0 15px 0 15px;
  1062. padding-bottom: 20px;
  1063. word-break: normal;
  1064. word-wrap: break-word;
  1065. }
  1066. .chat-message:nth-child(even) {
  1067. color: white;
  1068. }
  1069. .chat-message:nth-child(odd) {
  1070. color: darkblue;
  1071. }
  1072. #submit, #global-submit {
  1073. margin-bottom: 10px;
  1074. cursor: pointer;
  1075. }
  1076. #submit button, #global-submit button{
  1077. width: 100%;
  1078. font-size: 1.5em;
  1079. }
  1080. #submit i, #global-submit i{
  1081. margin-left: 10px;
  1082. }
  1083. #chat-input-div, #global-chat-input-div {
  1084. width: 100%;
  1085. padding-left: 15px;
  1086. padding-right: 15px;
  1087. }
  1088. .rank-admin {
  1089. color: crimson;
  1090. font-size: 20px;
  1091. font-weight: bold;
  1092. }
  1093. .rank-mod, .rank-moderator {
  1094. color: darkgoldenrod;
  1095. font-size: 20px;
  1096. font-weight: bold;
  1097. }
  1098. .rank-default {
  1099. font-size: 0px;
  1100. }
  1101. .row {
  1102. margin: 0;
  1103. }
  1104. .sidebar-content {
  1105. height: calc(100% - 42px);
  1106. }
  1107. #chat, #global-chat {
  1108. height:100%;
  1109. overflow: auto;
  1110. }
  1111. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1112. background-color: transparent;
  1113. color:#ffffff;
  1114. }
  1115. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1116. background-color: transparent;
  1117. color:#ffffff;
  1118. }
  1119. #doorbell-button{
  1120. margin-right: 30em;
  1121. }
  1122. #doorbell-email {
  1123. text-align: left;
  1124. }
  1125. #search-playlist{
  1126. outline: 0;
  1127. border: none;
  1128. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1129. background-color: #50a3a2;
  1130. width: 100%;
  1131. padding: 10px 15px;
  1132. margin: 0 auto 0 auto;
  1133. display: block;
  1134. text-align: center;
  1135. font-size: 18px;
  1136. color: white;
  1137. }
  1138. .nav-tabs li a{
  1139. color: white;
  1140. }
  1141. .navbar-overflow-y-hidden {
  1142. overflow-y: hidden;
  1143. }
  1144. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1145. ::-webkit-scrollbar {
  1146. width: 8px;
  1147. }
  1148. ::-webkit-scrollbar-track {
  1149. border-radius: 10px;
  1150. }
  1151. ::-webkit-scrollbar-thumb {
  1152. border-radius: 10px;
  1153. background-color: white;
  1154. }
  1155. .contact-name {
  1156. float: left;
  1157. }
  1158. .contact-img {
  1159. float: left;
  1160. margin-bottom: 20px;
  1161. margin-right: 20px;
  1162. }
  1163. .contact-ul {
  1164. clear: left;
  1165. }
  1166. .contact-option {
  1167. font-size: 22px;
  1168. }
  1169. #contact-container {
  1170. margin-top: 30px;
  1171. margin-bottom: 200px;
  1172. }
  1173. .contact-icon {
  1174. margin-right: 10px;
  1175. width: 28px;
  1176. height: 28px;
  1177. font-size: 28px !important;
  1178. }
  1179. .contact-pos {
  1180. padding-top: -10px;
  1181. margin-top: 70px;
  1182. }
  1183. .settings-label {
  1184. color: #50a3a2;
  1185. line-height: 18px;
  1186. }
  1187. .faq-small {
  1188. color: white;
  1189. }
  1190. .questions {
  1191. color: white;
  1192. font-size: 100;
  1193. }
  1194. .answers {
  1195. color: white;
  1196. font-size: 50;
  1197. }
  1198. #header-dropdown {
  1199. top: 100% !important;
  1200. height: auto;
  1201. padding: 5px 0;
  1202. margin: 2px 0 0;
  1203. border: 1px solid #ccc;
  1204. border: 1px solid rgba(0, 0, 0, .15);
  1205. border-radius: 4px;
  1206. overflow: inherit;
  1207. font-size: 14px;
  1208. letter-spacing: inherit;
  1209. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1210. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1211. }
  1212. #header-dropdown li:hover {
  1213. background-color: white;
  1214. }
  1215. #header-dropdown li:hover > a {
  1216. color: #1C39B2 !important;
  1217. }
  1218. #ban-icon {
  1219. font-size: 20em;
  1220. text-align: center;
  1221. width: 100%;
  1222. z-index: 3;
  1223. }
  1224. #banned-container {
  1225. color: white;
  1226. }
  1227. .social-link{
  1228. margin-right: 5px;
  1229. }
  1230. @media (max-width: 991px){
  1231. .contact-img{
  1232. float: none;
  1233. margin-bottom: 0;
  1234. }
  1235. }
  1236. .header-avatar {
  1237. margin-top: -9px;
  1238. /*width: 40px;
  1239. height: 40px;*/
  1240. margin-right: 5px;
  1241. float: left;
  1242. }
  1243. .profile-img{
  1244. width: 100px;
  1245. height: 100px;
  1246. margin: 0 auto;
  1247. }
  1248. .profile-img .avatar-initials{
  1249. line-height: 100px !important;
  1250. }
  1251. #doorbell-email{
  1252. color: black;
  1253. }
  1254. .song-panel{
  1255. max-height: 400px;
  1256. overflow-y: scroll;
  1257. overflow-x: hidden;
  1258. }
  1259. .song-panel-room{
  1260. float: right;
  1261. }
  1262. /*Credit to: http://thecodeplayer.com/walkthrough/custom-animated-checkbox-inputs-using-css-iconfonts*/
  1263. #two-label {
  1264. position: relative;
  1265. padding-left: 30px;
  1266. font-size: 14px;
  1267. cursor: pointer;
  1268. margin-bottom: 15px;
  1269. color: white;
  1270. padding-top: 3px;
  1271. }
  1272. #two-label:before, #two-label:after {
  1273. font-family: FontAwesome;
  1274. font-size: 21px;
  1275. /*absolutely positioned*/
  1276. position: absolute; top: 0; left: 0;
  1277. }
  1278. #two-label:before {
  1279. content: '\f096'; /*unchecked*/
  1280. }
  1281. #two-label:after {
  1282. content: '\f046'; /*checked*/
  1283. /*checked icon will be hidden by default by using 0 max-width and overflow hidden*/
  1284. max-width: 0;
  1285. overflow: hidden;
  1286. opacity: 0.5;
  1287. /*CSS3 transitions for animated effect*/
  1288. transition: all 0.35s;
  1289. }
  1290. /*hiding the original checkboxes*/
  1291. input[type="checkbox"] {
  1292. display: none;
  1293. }
  1294. /*when the user checks the checkbox the checked icon will animate in*/
  1295. input[type="checkbox"]:checked + #two-label:after {
  1296. max-width: 25px; /*an arbitratry number more than the icon's width*/
  1297. opacity: 1; /*for fade in effect*/
  1298. }
  1299. /*adding some colors for fun*/
  1300. #two+label:before, #two+label:after {color: hsl(180, 45%, 40%);}
  1301. #chat-tab, #global-chat-tab {
  1302. -webkit-transition: background-color 500ms linear;
  1303. -moz-transition: background-color 500ms linear;
  1304. -ms-transition: background-color 500ms linear;
  1305. -o-transition: background-color 500ms linear;
  1306. transition: background-color 500ms linear;
  1307. }
  1308. .unread-messages {
  1309. background-color: orange;
  1310. }
  1311. .disabled {
  1312. cursor: not-allowed;
  1313. opacity: 1;
  1314. background-color: rgba(235, 235, 228, 0.5) !important;
  1315. }