app.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355
  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. font-weight: 200;
  255. }
  256. .container p {
  257. font-size: 10px;
  258. color: white;
  259. -webkit-transition-duration: 1s;
  260. transition-duration: 1s;
  261. font-weight: 200;
  262. }
  263. form {
  264. padding: 20px 0;
  265. position: relative;
  266. z-index: 2;
  267. }
  268. form input, .croom, .calert {
  269. -webkit-appearance: none;
  270. -moz-appearance: none;
  271. appearance: none;
  272. outline: 0;
  273. border: 1px solid rgba(255, 255, 255, 0.4);
  274. background-color: rgba(255, 255, 255, 0.2);
  275. width: 304px;
  276. border-radius: 3px;
  277. padding: 10px 15px;
  278. margin: 0 auto 10px auto;
  279. display: block;
  280. text-align: center;
  281. font-size: 18px;
  282. color: white;
  283. -webkit-transition-duration: 0.25s;
  284. transition-duration: 0.25s;
  285. font-weight: 300;
  286. }
  287. form input:hover {
  288. background-color: rgba(255, 255, 255, 0.4);
  289. }
  290. form input:focus {
  291. /*opacity: 0.4;*/
  292. width: 354px;
  293. color: white;
  294. }
  295. .g-recaptcha {
  296. -webkit-appearance: none;
  297. -moz-appearance: none;
  298. appearance: none;
  299. outline: 0;
  300. width: 304px;
  301. margin: 0 auto 10px auto;
  302. display: block;
  303. text-align: center;
  304. font-size: 18px;
  305. color: white;
  306. -webkit-transition-duration: 0.25s;
  307. transition-duration: 0.25s;
  308. font-weight: 300;
  309. }
  310. form button {
  311. -webkit-appearance: none;
  312. -moz-appearance: none;
  313. appearance: none;
  314. outline: 0;
  315. background-color: white;
  316. border: 0;
  317. padding: 10px 15px;
  318. color: #53e3a6;
  319. border-radius: 3px;
  320. width: 304px;
  321. cursor: pointer;
  322. font-size: 18px;
  323. -webkit-transition-duration: 0.25s;
  324. transition-duration: 0.25s;
  325. }
  326. ::-webkit-input-placeholder {
  327. color: white;
  328. }
  329. ::-moz-placeholder {
  330. /* Firefox 19+ */
  331. color: white;
  332. }
  333. :-ms-input-placeholder {
  334. color: white;
  335. }
  336. form button:hover {
  337. background-color: #f5f7f9;
  338. }
  339. .bg-bubbles {
  340. top: 0;
  341. left: 0;
  342. width: 100%;
  343. height: 100%;
  344. position: absolute;
  345. z-index: 1;
  346. margin: 0px;
  347. pointer-events: none;
  348. }
  349. .bg-bubbles li {
  350. position: absolute;
  351. list-style: none;
  352. display: block;
  353. width: 40px;
  354. height: 40px;
  355. border-radius: 100px;
  356. background-color: rgba(255, 255, 255, 0.15);
  357. bottom: 0px;
  358. -webkit-animation: square 25s infinite;
  359. animation: square 25s infinite;
  360. -webkit-transition-timing-function: linear;
  361. transition-timing-function: linear;
  362. }
  363. .bg-bubbles li:nth-child(1) {
  364. left: 10%;
  365. }
  366. .bg-bubbles li:nth-child(2) {
  367. left: 20%;
  368. width: 80px;
  369. height: 80px;
  370. -webkit-animation-delay: 2s;
  371. animation-delay: 2s;
  372. -webkit-animation-duration: 17s;
  373. animation-duration: 17s;
  374. }
  375. .bg-bubbles li:nth-child(3) {
  376. left: 25%;
  377. -webkit-animation-delay: 4s;
  378. animation-delay: 4s;
  379. }
  380. .bg-bubbles li:nth-child(4) {
  381. left: 40%;
  382. width: 60px;
  383. height: 60px;
  384. -webkit-animation-duration: 22s;
  385. animation-duration: 22s;
  386. background-color: rgba(255, 255, 255, 0.25);
  387. }
  388. .bg-bubbles li:nth-child(5) {
  389. left: 70%;
  390. }
  391. .bg-bubbles li:nth-child(6) {
  392. left: 80%;
  393. width: 120px;
  394. height: 120px;
  395. -webkit-animation-delay: 3s;
  396. animation-delay: 3s;
  397. background-color: rgba(255, 255, 255, 0.2);
  398. }
  399. .bg-bubbles li:nth-child(7) {
  400. left: 32%;
  401. width: 160px;
  402. height: 160px;
  403. -webkit-animation-delay: 7s;
  404. animation-delay: 7s;
  405. }
  406. .bg-bubbles li:nth-child(8) {
  407. left: 55%;
  408. width: 20px;
  409. height: 20px;
  410. -webkit-animation-delay: 15s;
  411. animation-delay: 15s;
  412. -webkit-animation-duration: 40s;
  413. animation-duration: 40s;
  414. }
  415. .bg-bubbles li:nth-child(9) {
  416. left: 25%;
  417. width: 10px;
  418. height: 10px;
  419. -webkit-animation-delay: 2s;
  420. animation-delay: 2s;
  421. -webkit-animation-duration: 40s;
  422. animation-duration: 40s;
  423. background-color: rgba(255, 255, 255, 0.3);
  424. }
  425. .bg-bubbles li:nth-child(10) {
  426. left: 80%;
  427. width: 160px;
  428. height: 160px;
  429. -webkit-animation-delay: 11s;
  430. animation-delay: 11s;
  431. }
  432. /* Tablet view fix */
  433. @media (max-width: 768px){
  434. body{
  435. height: auto !important;
  436. }
  437. .bg-bubbles li:nth-child(10) {
  438. display: none;
  439. }
  440. #song-media{
  441. margin-left: 0 !important;
  442. }
  443. #song-info{
  444. margin: 15px auto;
  445. width: 200px;
  446. }
  447. #settings{
  448. margin: 0 auto !important;
  449. margin-bottom: 10px !important;
  450. }
  451. #voting{
  452. margin: 0 auto !important;
  453. width: 300px !important;
  454. margin-bottom: 100px !important;
  455. }
  456. #side-panel{
  457. display: none;
  458. }
  459. }
  460. /**/
  461. @-webkit-keyframes square {
  462. 0% {
  463. -webkit-transform: translateY(0);
  464. transform: translateY(0);
  465. }
  466. 100% {
  467. -webkit-transform: translateY(-700px) rotate(600deg);
  468. transform: translateY(-700px) rotate(600deg);
  469. }
  470. }
  471. @keyframes square {
  472. 0% {
  473. -webkit-transform: translateY(0);
  474. transform: translateY(0);
  475. }
  476. 100% {
  477. -webkit-transform: translateY(-700px) rotate(600deg);
  478. transform: translateY(-700px) rotate(600deg);
  479. }
  480. }
  481. .fa-github {
  482. margin-top: 3px;
  483. }
  484. #github-login {
  485. background-color: #999;
  486. margin-bottom: 100px;
  487. }
  488. .btn-social {
  489. -webkit-appearance: none;
  490. -moz-appearance: none;
  491. appearance: none;
  492. outline: 0;
  493. border: 0;
  494. padding: 10px 15px;
  495. border-radius: 3px;
  496. width: 304px;
  497. cursor: pointer;
  498. font-size: 18px;
  499. color: #fff;
  500. }
  501. footer {
  502. text-align: center;
  503. width: 100%;
  504. height: 75px;
  505. margin-top: 75px;
  506. color: white;
  507. padding-top: 5px;
  508. }
  509. .push {
  510. height: 75px; /* .push must be the same height as .footer */
  511. }
  512. footer a {
  513. color: white;
  514. }
  515. footer a:hover {
  516. color: white;
  517. }
  518. footer p {
  519. margin: 0 !important;
  520. }
  521. footer .fa {
  522. font-size: 2em;
  523. }
  524. .button-nowidth {
  525. -webkit-appearance: none;
  526. -moz-appearance: none;
  527. appearance: none;
  528. outline: 0;
  529. background-color: white;
  530. border: 0;
  531. padding: 10px 15px;
  532. color: #53e3a6;
  533. border-radius: 3px;
  534. cursor: pointer;
  535. font-size: 18px;
  536. -webkit-transition-duration: 0.25s;
  537. transition-duration: 0.25s;
  538. }
  539. .button-nowidth:hover {
  540. background-color: #f5f7f9;
  541. }
  542. .button {
  543. -webkit-appearance: none;
  544. -moz-appearance: none;
  545. appearance: none;
  546. outline: 0;
  547. background-color: white;
  548. border: 0;
  549. padding: 10px 15px;
  550. color: #53e3a6;
  551. border-radius: 3px;
  552. width: 304px;
  553. cursor: pointer;
  554. font-size: 18px;
  555. -webkit-transition-duration: 0.25s;
  556. transition-duration: 0.25s;
  557. }
  558. .button:hover {
  559. background-color: #f5f7f9;
  560. }
  561. .station {
  562. background-color: rgba(102, 205, 170, 0.7);
  563. height: 300px;
  564. width: 300px;
  565. border-radius: 100%;
  566. text-align: center;
  567. color: white;
  568. font-family: Sans-serif;
  569. /*float: left;*/
  570. margin-right: auto;
  571. margin-left: auto;
  572. position: relative;
  573. }
  574. .station > h3 {
  575. line-height: 200px;
  576. font-size: 42px;
  577. }
  578. .station > h5 {
  579. margin-top: -40px;
  580. font-size: 15px;
  581. }
  582. .room-name {
  583. font-size: 3.5em;
  584. color: white;
  585. font-weight: 600;
  586. text-align: center;
  587. }
  588. .room-title {
  589. font-size: 2.5em;
  590. color: white;
  591. font-weight: 600;
  592. }
  593. .room-artist {
  594. font-size: 1.5em;
  595. color: white;
  596. }
  597. #seeker-bar {
  598. background-color: black;
  599. width: 0;
  600. height: 10px;
  601. clear: both;
  602. background-color: rgba(16, 140, 146, 0.8);
  603. }
  604. .song-input {
  605. -webkit-appearance: none;
  606. -moz-appearance: none;
  607. appearance: none;
  608. outline: 0;
  609. border: 1px solid rgba(255, 255, 255, 0.4);
  610. background-color: rgba(255, 255, 255, 0.2);
  611. width: 304px;
  612. border-radius: 3px;
  613. padding: 10px 15px;
  614. margin: 1em auto 10px auto;
  615. display: block;
  616. text-align: center;
  617. font-size: 18px;
  618. color: white;
  619. -webkit-transition-duration: 0.25s;
  620. transition-duration: 0.25s;
  621. font-weight: 300;
  622. }
  623. #chat-input {
  624. -webkit-appearance: none;
  625. -moz-appearance: none;
  626. appearance: none;
  627. outline: 0;
  628. border: 1px solid white;
  629. background-color: transparent;
  630. width: 100%;
  631. height: 70px;
  632. padding: 5px;
  633. border-radius: 3px;
  634. text-align: left;
  635. font-size: 18px;
  636. color: #1C39B2;
  637. -webkit-transition-duration: 0.25s;
  638. transition-duration: 0.25s;
  639. font-weight: 300;
  640. resize: none;
  641. }
  642. .song-input-select {
  643. -webkit-appearance: none;
  644. -moz-appearance: none;
  645. appearance: none;
  646. outline: 0;
  647. border: 1px solid rgba(255, 255, 255, 0.4);
  648. background-color: rgba(255, 255, 255, 0.2);
  649. width: 304px;
  650. border-radius: 3px;
  651. padding: 10px 15px;
  652. margin: 1em auto 10px auto;
  653. display: block;
  654. text-align: center;
  655. font-size: 18px;
  656. color: white;
  657. -webkit-transition-duration: 0.25s;
  658. transition-duration: 0.25s;
  659. font-weight: 300;
  660. }
  661. .song-input:hover {
  662. background-color: rgba(255, 255, 255, 0.4);
  663. }
  664. .song-input:focus {
  665. background-color: rgba(255, 255, 255, 0.4);
  666. }
  667. .song-input-select:hover {
  668. background-color: rgba(255, 255, 255, 0.4);
  669. }
  670. .song-input-select > option {
  671. color: black;
  672. background-color: rgba(255, 255, 255, 0.2);
  673. }
  674. .song-input:focus {
  675. width: 354px;
  676. color: white;
  677. }
  678. #search-song {
  679. display: block;
  680. margin: 0 auto;
  681. }
  682. #song-results {
  683. margin: 0 auto;
  684. color: white;
  685. margin-top: 1em;
  686. font-size: 1.5em;
  687. text-align: center;
  688. }
  689. #song-results p {
  690. margin: 0;
  691. padding: 5px;
  692. }
  693. #song-results p:hover {
  694. background-color: cadetblue;
  695. cursor: pointer;
  696. }
  697. #player {
  698. z-index: 10;
  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. height: 100%;
  795. /*overflow: auto;*/
  796. }
  797. #playlist-ul {
  798. margin: 0;
  799. color: white;
  800. font-size: 21px;
  801. max-height: calc(100% - 48px);
  802. height: calc(100% - 48px);
  803. overflow: auto;
  804. padding-left: 5px;
  805. }
  806. #s2 {
  807. opacity: 0.66666666666666;
  808. }
  809. #s3 {
  810. opacity: 0.33333333333333;
  811. }
  812. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  813. display: block;
  814. margin: 0 auto;
  815. }
  816. .alert {
  817. text-align: center;
  818. }
  819. @media (max-width: 992px) {
  820. /* some think */
  821. #s3 {
  822. visibility: hidden;
  823. height: 0;
  824. }
  825. }
  826. @media (max-width: 768px) {
  827. /* some think */
  828. #s2 {
  829. visibility: hidden;
  830. height: 0;
  831. }
  832. }
  833. .column-small {
  834. width: 1px;
  835. }
  836. #return {
  837. display: block;
  838. margin: 0 auto 20px auto;
  839. }
  840. #song-media {
  841. margin-left: 10px;
  842. min-height: 460px;
  843. }
  844. #station-main {
  845. margin: 0;
  846. padding: 0;
  847. }
  848. #station-main nav {
  849. height: 50px;
  850. color: white;
  851. }
  852. /*Navbar HAMBURGUR*/
  853. .navbar-default .navbar-toggle .icon-bar{
  854. background-color: white;
  855. }
  856. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  857. background-color: transparent;
  858. }
  859. .navbar-default .navbar-toggle{
  860. background-color: transparent;
  861. }
  862. nav form{
  863. height: 0;
  864. }
  865. nav form input[type="image"]{
  866. width: 100px;
  867. background-color: transparent !important;
  868. border: none !important;
  869. margin-top: -15px;
  870. }
  871. #station-main nav i {
  872. margin-left: 1em;
  873. font-size: 2em;
  874. }
  875. #station-main nav h3 {
  876. display: inline-block;
  877. margin: 10px auto;
  878. margin-left: 50%;
  879. font-size: 2em;
  880. }
  881. #side-panel {
  882. height: 100vh;
  883. padding-left: 0;
  884. padding-right: 0;
  885. background-color: rgba(255, 255, 255, 0.4);
  886. }
  887. .embed-responsive {
  888. margin-top: 15px;
  889. }
  890. #header {
  891. margin-bottom: 0px;
  892. }
  893. .user-stat {
  894. font-size: 20px;
  895. color: #53e3a6;
  896. }
  897. #profile-name {
  898. font-size: 60px;
  899. color: #FFFFFF;
  900. margin-right: auto;
  901. margin-left: auto;
  902. text-align: center;
  903. }
  904. .admin-queue-panel:first-child {
  905. margin-top: 20px;
  906. }
  907. #songs {
  908. margin-top: -200px;
  909. margin-bottom: 20px;
  910. }
  911. .back {
  912. color: white;
  913. }
  914. .back:hover {
  915. color: white;
  916. }
  917. #volume-container {
  918. width: 172px; /*12.5 px each side*/
  919. float: right;
  920. height: 100%;
  921. }
  922. #volume-container > .slider {
  923. top: 40%;
  924. transform: translateY(-40%);
  925. padding-right: 12px;
  926. padding-left: 12px;
  927. margin-left: 12px;
  928. float: left;
  929. }
  930. #volume-container-admin {
  931. display: inline-block;
  932. width: 174px;
  933. margin-left: 10px;
  934. }
  935. #volume-container-admin > .slider {
  936. width: 150px !important;
  937. padding-left: 12px;
  938. padding-right: 12px;
  939. margin-left: 12px;
  940. }
  941. #volume-icon {
  942. /*margin-left: 320px !important;*/
  943. margin: 0 !important;
  944. float: left;
  945. margin-top: 7px !important;
  946. width: 12px;
  947. }
  948. #settings {
  949. margin-top: 10px;
  950. margin-left: 10px;
  951. }
  952. #voting {
  953. margin-top: 10px;
  954. margin-left: 10px;
  955. }
  956. #loginregistercontainer {
  957. margin-bottom: 100px;
  958. }
  959. .admin-header {
  960. color: white;
  961. }
  962. .admin-panel-body {
  963. max-height: 400px;
  964. overflow-y: scroll;
  965. overflow-x: hidden;
  966. }
  967. .terms, .privacy, .about {
  968. color: white;
  969. }
  970. .about a{
  971. color: white;
  972. }
  973. #play, #pause, #skip, #shuffle, #sync {
  974. cursor: pointer;
  975. }
  976. .delete-room {
  977. display: inline-block;
  978. cursor: pointer;
  979. }
  980. .delete-room:hover {
  981. color: red;
  982. }
  983. .panel-title {
  984. display: inline-block;
  985. }
  986. .report-layer-1 {
  987. margin-left: 19%;
  988. }
  989. .report-layer-2 {
  990. margin-left: 80px;
  991. }
  992. .other-textarea {
  993. outline: 0px;
  994. border: 1px solid rgba(255, 255, 255, 0.4);
  995. width: 304px;
  996. border-radius: 3px;
  997. padding: 10px 15px;
  998. margin: 5px -285.578px 10px 0px;
  999. display: block;
  1000. text-align: left;
  1001. font-size: 18px;
  1002. color: white;
  1003. transition-duration: 0.25s;
  1004. font-weight: 300;
  1005. background-color: rgba(255, 255, 255, 0.2);
  1006. resize: vertical;
  1007. }
  1008. #room-header {
  1009. position: absolute;
  1010. left: 0;
  1011. right: 0;
  1012. margin-left: auto;
  1013. margin-right: auto;
  1014. width: 100px;
  1015. }
  1016. #room-icons {
  1017. margin-top: 11px;
  1018. float: left;
  1019. }
  1020. #time-display {
  1021. color: white;
  1022. }
  1023. .action-button {
  1024. float: left;
  1025. width: 100%;
  1026. }
  1027. .chat-message {
  1028. font-size: 20px;
  1029. color: white;
  1030. }
  1031. #chat-ul {
  1032. overflow-y: hidden;
  1033. margin: 0;
  1034. padding: 0 15px 0 15px;
  1035. padding-bottom: 20px;
  1036. word-break: normal;
  1037. word-wrap: break-word;
  1038. }
  1039. .chat-message:nth-child(even) {
  1040. color: white;
  1041. }
  1042. .chat-message:nth-child(odd) {
  1043. color: darkblue;
  1044. }
  1045. #submit {
  1046. margin-bottom: 10px;
  1047. cursor: pointer;
  1048. }
  1049. #submit button{
  1050. width: 100%;
  1051. font-size: 1.5em;
  1052. }
  1053. #submit i{
  1054. margin-left: 10px;
  1055. }
  1056. #chat-input-div {
  1057. width: 100%;
  1058. padding-left: 15px;
  1059. padding-right: 15px;
  1060. }
  1061. .rank-admin {
  1062. color: crimson;
  1063. font-size: 20px;
  1064. font-weight: bold;
  1065. }
  1066. .rank-mod {
  1067. color: darkgoldenrod;
  1068. font-size: 20px;
  1069. font-weight: bold;
  1070. }
  1071. .rank-default {
  1072. font-size: 0px;
  1073. }
  1074. .row {
  1075. margin: 0;
  1076. }
  1077. .sidebar-content {
  1078. height: calc(100% - 42px);
  1079. }
  1080. #chat {
  1081. height:100%;
  1082. overflow: auto;
  1083. }
  1084. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1085. background-color: transparent;
  1086. color:#ffffff;
  1087. }
  1088. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1089. background-color: transparent;
  1090. color:#ffffff;
  1091. }
  1092. #doorbell-button{
  1093. margin-right: 30em;
  1094. }
  1095. #search-playlist{
  1096. outline: 0;
  1097. border: none;
  1098. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1099. background-color: #50a3a2;
  1100. width: 100%;
  1101. padding: 10px 15px;
  1102. margin: 0 auto 0 auto;
  1103. display: block;
  1104. text-align: center;
  1105. font-size: 18px;
  1106. color: white;
  1107. }
  1108. .nav-tabs li a{
  1109. color: white;
  1110. }
  1111. .navbar-overflow-y-hidden {
  1112. overflow-y: hidden;
  1113. }
  1114. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1115. ::-webkit-scrollbar {
  1116. width: 8px;
  1117. }
  1118. ::-webkit-scrollbar-track {
  1119. border-radius: 10px;
  1120. }
  1121. ::-webkit-scrollbar-thumb {
  1122. border-radius: 10px;
  1123. background-color: white;
  1124. }
  1125. .contact-name {
  1126. margin-left: 30px;
  1127. margin-top: 35px;
  1128. float: left;
  1129. height: 90px;
  1130. margin-bottom: 0;
  1131. }
  1132. .contact-img {
  1133. float: left;
  1134. }
  1135. .contact-ul {
  1136. clear: left;
  1137. }
  1138. .contact-option {
  1139. font-size: 22px;
  1140. }
  1141. #contact-container {
  1142. margin-top: 30px;
  1143. margin-bottom: 200px;
  1144. }
  1145. .contact-icon {
  1146. margin-right: 10px;
  1147. width: 28px;
  1148. height: 28px;
  1149. font-size: 28px !important;
  1150. }
  1151. .settings-label {
  1152. color: #50a3a2;
  1153. line-height: 18px;
  1154. }
  1155. .faq-small {
  1156. color: white;
  1157. }
  1158. .questions {
  1159. color: white;
  1160. font-size: 100;
  1161. }
  1162. .answers {
  1163. color: white;
  1164. font-size: 50;
  1165. }
  1166. #header-dropdown {
  1167. padding: 5px 0;
  1168. margin: 2px 0 0;
  1169. border: 1px solid #ccc;
  1170. border: 1px solid rgba(0, 0, 0, .15);
  1171. border-radius: 4px;
  1172. overflow: inherit;
  1173. font-size: 14px;
  1174. letter-spacing: inherit;
  1175. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1176. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1177. }
  1178. #header-dropdown li:hover {
  1179. background-color: white;
  1180. }
  1181. #header-dropdown li:hover > a {
  1182. color: #1C39B2 !important;
  1183. }