app.css 23 KB

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