app.css 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556
  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 > div {
  717. margin: 0;
  718. padding: 5px;
  719. text-align: left;
  720. border-bottom: 1px solid white;
  721. transition: background-color 300ms linear;
  722. transition: color 300ms linear;
  723. }
  724. #song-results > div:last-child {
  725. border-bottom: 0;
  726. }
  727. #song-results > div:hover {
  728. color: #0e90d2;
  729. background-color: rgba(255, 255, 255, 0.5);
  730. cursor: pointer;
  731. }
  732. .song-result-thumbnail {
  733. width: 224px;
  734. height: 126px;
  735. margin-top: 50px;
  736. margin-left: auto;
  737. margin-right: auto;
  738. word-break: break-all;
  739. display: block;
  740. }
  741. .song-result-title {
  742. margin-left: 20px;
  743. margin-top: 10px;
  744. display: block;
  745. box-sizing: border-box;
  746. font-size: 1.4em;
  747. }
  748. .song-result-channel {
  749. margin-left: 20px;
  750. margin-top: 5px;
  751. display: block;
  752. box-sizing: border-box;
  753. font-size: 0.9em;
  754. }
  755. #player {
  756. z-index: 10;
  757. }
  758. .hidden {
  759. visibility: hidden;
  760. }
  761. .footerButtons {
  762. background: none !important;
  763. border: none;
  764. padding: 0 !important;
  765. font: inherit;
  766. cursor: pointer;
  767. }
  768. .footerButtons:hover {
  769. background-color: #f5f7f9;
  770. }
  771. .song-img {
  772. width: 210px;
  773. height: 210px;
  774. }
  775. #seeker-container {
  776. width: calc(100% - 70px);
  777. margin-left: 30px;
  778. margin-right: 35px;
  779. overflow: hidden;
  780. }
  781. .pl-container {
  782. color: #53e3a6;
  783. background-color: white;
  784. border-radius: 3px;
  785. font-size: 18px;
  786. }
  787. .pl-container h4 {
  788. text-align: center;
  789. font-size: 40px;
  790. margin-bottom: 10px;
  791. }
  792. #spinner {
  793. font-size: 200px;
  794. color: bisque;
  795. }
  796. #spinner-container {
  797. margin-left: auto;
  798. margin-right: auto;
  799. width: 200px;
  800. margin-top: 10%;
  801. }
  802. #croom_container, #calert_container {
  803. margin-left: auto;
  804. margin-right: auto;
  805. margin-bottom: 10px;
  806. width: 304px !important;
  807. }
  808. .croom_label, .calert_label {
  809. color: white;
  810. }
  811. .croom, .calert {
  812. width: 304px !important;
  813. }
  814. #calert-priority > option {
  815. color: black;
  816. }
  817. #spinner {
  818. font-size: 200px;
  819. color: bisque;
  820. }
  821. #spinner-container {
  822. margin-left: auto;
  823. margin-right: auto;
  824. width: 200px;
  825. margin-top: 10%;
  826. }
  827. .modal-content {
  828. background-color: rgb(107, 197, 164);
  829. color: white;
  830. }
  831. .song-input-label {
  832. width: 100%;
  833. text-align: center;
  834. }
  835. .station_link {
  836. position: absolute;
  837. width: 100%;
  838. height: 100%;
  839. top: 0;
  840. left: 0;
  841. border-radius: 100%;
  842. }
  843. ul#playlist{
  844. margin-top: 50px;
  845. padding-left: 5px;
  846. }
  847. #playlist {
  848. margin: 0;
  849. color: white;
  850. font-size: 21px;
  851. max-height: 100%;
  852. height: 100%;
  853. /*overflow: auto;*/
  854. }
  855. #playlist-ul {
  856. margin: 0;
  857. color: white;
  858. font-size: 21px;
  859. max-height: calc(100% - 48px);
  860. height: calc(100% - 48px);
  861. overflow: auto;
  862. padding-left: 5px;
  863. }
  864. #s2 {
  865. opacity: 0.66666666666666;
  866. }
  867. #s3 {
  868. opacity: 0.33333333333333;
  869. }
  870. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  871. display: block;
  872. margin: 0 auto;
  873. }
  874. .alert {
  875. text-align: center;
  876. }
  877. @media (max-width: 992px) {
  878. /* some think */
  879. #s3 {
  880. visibility: hidden;
  881. height: 0;
  882. }
  883. }
  884. @media (max-width: 768px) {
  885. /* some think */
  886. #s2 {
  887. visibility: hidden;
  888. height: 0;
  889. }
  890. }
  891. .column-small {
  892. width: 1px;
  893. }
  894. #return {
  895. display: block;
  896. margin: 0 auto 20px auto;
  897. }
  898. #song-media {
  899. margin-left: 10px;
  900. min-height: 460px;
  901. }
  902. #station-main {
  903. margin: 0;
  904. padding: 0;
  905. }
  906. #station-main nav {
  907. height: 50px;
  908. color: white;
  909. }
  910. /*Navbar HAMBURGUR*/
  911. .navbar-default .navbar-toggle .icon-bar{
  912. background-color: white;
  913. }
  914. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  915. background-color: transparent;
  916. }
  917. .navbar-default .navbar-toggle{
  918. background-color: transparent;
  919. }
  920. nav form{
  921. height: 0;
  922. }
  923. nav form input[type="image"]{
  924. width: 100px;
  925. background-color: transparent !important;
  926. border: none !important;
  927. margin-top: -15px;
  928. }
  929. #station-main nav i {
  930. margin-left: 1em;
  931. font-size: 2em;
  932. }
  933. #station-main nav h3 {
  934. display: inline-block;
  935. margin: 10px auto;
  936. margin-left: 50%;
  937. font-size: 2em;
  938. }
  939. #side-panel {
  940. height: 100vh;
  941. padding-left: 0;
  942. padding-right: 0;
  943. background-color: rgba(255, 255, 255, 0.4);
  944. }
  945. .embed-responsive {
  946. margin-top: 15px;
  947. }
  948. #header {
  949. margin-bottom: 0px;
  950. }
  951. .user-stat {
  952. font-size: 20px;
  953. color: #53e3a6;
  954. }
  955. #profile-name {
  956. font-size: 60px;
  957. color: #FFFFFF;
  958. margin-right: auto;
  959. margin-left: auto;
  960. text-align: center;
  961. }
  962. .admin-queue-panel:first-child {
  963. margin-top: 20px;
  964. }
  965. #songs {
  966. margin-top: -200px;
  967. margin-bottom: 20px;
  968. }
  969. .back {
  970. color: white;
  971. }
  972. .back:hover {
  973. color: white;
  974. }
  975. #volume-container {
  976. width: 172px; /*12.5 px each side*/
  977. float: right;
  978. height: 100%;
  979. }
  980. #volume-container > .slider {
  981. top: 40%;
  982. transform: translateY(-40%);
  983. padding-right: 12px;
  984. padding-left: 12px;
  985. margin-left: 12px;
  986. float: left;
  987. }
  988. #volume-container-admin {
  989. display: inline-block;
  990. width: 174px;
  991. margin-left: 10px;
  992. }
  993. #volume-container-admin > .slider {
  994. width: 150px !important;
  995. padding-left: 12px;
  996. padding-right: 12px;
  997. margin-left: 12px;
  998. }
  999. #volume-icon {
  1000. /*margin-left: 320px !important;*/
  1001. margin: 0 !important;
  1002. float: left;
  1003. margin-top: 7px !important;
  1004. width: 12px;
  1005. }
  1006. #settings {
  1007. margin-top: 10px;
  1008. margin-left: 10px;
  1009. }
  1010. #voting {
  1011. margin-top: 10px;
  1012. margin-left: 10px;
  1013. }
  1014. #loginregistercontainer {
  1015. margin-bottom: 100px;
  1016. }
  1017. .admin-header {
  1018. color: white;
  1019. }
  1020. .admin-panel-body {
  1021. max-height: 400px;
  1022. overflow-y: scroll;
  1023. overflow-x: hidden;
  1024. }
  1025. .terms, .privacy, .about {
  1026. color: white;
  1027. }
  1028. .about a{
  1029. color: white;
  1030. }
  1031. #play, #pause, #skip, #shuffle, #sync, #unlock, #lock {
  1032. cursor: pointer;
  1033. }
  1034. .delete-room {
  1035. display: inline-block;
  1036. cursor: pointer;
  1037. }
  1038. .delete-room:hover {
  1039. color: red;
  1040. }
  1041. .panel-title {
  1042. display: inline-block;
  1043. }
  1044. .report-layer-1 {
  1045. margin-left: 19%;
  1046. }
  1047. .report-layer-2 {
  1048. margin-left: 80px;
  1049. }
  1050. .other-textarea {
  1051. outline: 0px;
  1052. border: 1px solid rgba(255, 255, 255, 0.4);
  1053. width: 304px;
  1054. border-radius: 3px;
  1055. padding: 10px 15px;
  1056. margin: 5px -285.578px 10px 0px;
  1057. display: block;
  1058. text-align: left;
  1059. font-size: 18px;
  1060. color: white;
  1061. transition-duration: 0.25s;
  1062. font-weight: 300;
  1063. background-color: rgba(255, 255, 255, 0.2);
  1064. resize: vertical;
  1065. }
  1066. #room-header {
  1067. position: absolute;
  1068. left: 0;
  1069. right: 0;
  1070. margin-left: auto;
  1071. margin-right: auto;
  1072. width: 100px;
  1073. }
  1074. #room-icons {
  1075. margin-top: 11px;
  1076. float: left;
  1077. }
  1078. #time-display {
  1079. color: white;
  1080. }
  1081. .action-button {
  1082. float: left;
  1083. width: 100%;
  1084. }
  1085. .chat-message {
  1086. font-size: 20px;
  1087. color: white;
  1088. }
  1089. #chat-ul, #global-chat-ul {
  1090. overflow-y: hidden;
  1091. margin: 0;
  1092. padding: 0 15px 0 15px;
  1093. padding-bottom: 20px;
  1094. word-break: normal;
  1095. word-wrap: break-word;
  1096. }
  1097. .chat-message:nth-child(even) {
  1098. color: white;
  1099. }
  1100. .chat-message:nth-child(odd) {
  1101. color: darkblue;
  1102. }
  1103. #submit, #global-submit {
  1104. margin-bottom: 10px;
  1105. cursor: pointer;
  1106. }
  1107. #submit button, #global-submit button{
  1108. width: 100%;
  1109. font-size: 1.5em;
  1110. }
  1111. #submit i, #global-submit i{
  1112. margin-left: 10px;
  1113. }
  1114. #chat-input-div, #global-chat-input-div {
  1115. width: 100%;
  1116. padding-left: 15px;
  1117. padding-right: 15px;
  1118. }
  1119. .rank-admin {
  1120. color: crimson;
  1121. font-size: 20px;
  1122. font-weight: bold;
  1123. }
  1124. .rank-mod, .rank-moderator {
  1125. color: darkgoldenrod;
  1126. font-size: 20px;
  1127. font-weight: bold;
  1128. }
  1129. .rank-default {
  1130. font-size: 0px;
  1131. }
  1132. .row {
  1133. margin: 0;
  1134. }
  1135. .sidebar-content {
  1136. height: calc(100% - 42px);
  1137. }
  1138. #chat, #global-chat {
  1139. height:100%;
  1140. overflow: auto;
  1141. }
  1142. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  1143. background-color: transparent;
  1144. color:#ffffff;
  1145. }
  1146. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  1147. background-color: transparent;
  1148. color:#ffffff;
  1149. }
  1150. #doorbell-button{
  1151. margin-right: 30em;
  1152. }
  1153. #doorbell-email {
  1154. text-align: left;
  1155. }
  1156. #search-playlist{
  1157. outline: 0;
  1158. border: none;
  1159. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  1160. background-color: #50a3a2;
  1161. width: 100%;
  1162. padding: 10px 15px;
  1163. margin: 0 auto 0 auto;
  1164. display: block;
  1165. text-align: center;
  1166. font-size: 18px;
  1167. color: white;
  1168. }
  1169. .nav-tabs li a{
  1170. color: white;
  1171. }
  1172. .navbar-overflow-y-hidden {
  1173. overflow-y: hidden;
  1174. }
  1175. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  1176. ::-webkit-scrollbar {
  1177. width: 8px;
  1178. }
  1179. ::-webkit-scrollbar-track {
  1180. border-radius: 10px;
  1181. }
  1182. ::-webkit-scrollbar-thumb {
  1183. border-radius: 10px;
  1184. background-color: white;
  1185. }
  1186. .contact-name {
  1187. float: left;
  1188. }
  1189. .contact-img {
  1190. float: left;
  1191. margin-bottom: 20px;
  1192. margin-right: 20px;
  1193. }
  1194. .contact-ul {
  1195. clear: left;
  1196. }
  1197. .contact-option {
  1198. font-size: 22px;
  1199. }
  1200. #contact-container {
  1201. margin-top: 30px;
  1202. margin-bottom: 200px;
  1203. }
  1204. .contact-icon {
  1205. margin-right: 10px;
  1206. width: 28px;
  1207. height: 28px;
  1208. font-size: 28px !important;
  1209. }
  1210. .contact-pos {
  1211. padding-top: -10px;
  1212. margin-top: 70px;
  1213. }
  1214. .settings-label {
  1215. color: #50a3a2;
  1216. line-height: 18px;
  1217. }
  1218. .faq-small {
  1219. color: white;
  1220. }
  1221. .questions {
  1222. color: white;
  1223. font-size: 100;
  1224. }
  1225. .answers {
  1226. color: white;
  1227. font-size: 50;
  1228. }
  1229. #header-dropdown {
  1230. top: 100% !important;
  1231. height: auto;
  1232. padding: 5px 0;
  1233. margin: 2px 0 0;
  1234. border: 1px solid #ccc;
  1235. border: 1px solid rgba(0, 0, 0, .15);
  1236. border-radius: 4px;
  1237. overflow: inherit;
  1238. font-size: 14px;
  1239. letter-spacing: inherit;
  1240. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1241. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  1242. background-color: #51BCA3;
  1243. }
  1244. #header-dropdown li:hover {
  1245. background-color: #3A8876;
  1246. }
  1247. #ban-icon {
  1248. font-size: 20em;
  1249. text-align: center;
  1250. width: 100%;
  1251. z-index: 3;
  1252. }
  1253. #banned-container {
  1254. color: white;
  1255. }
  1256. .social-link{
  1257. margin-right: 5px;
  1258. }
  1259. @media (max-width: 991px){
  1260. .contact-img{
  1261. float: none;
  1262. margin-bottom: 0;
  1263. }
  1264. }
  1265. .header-avatar {
  1266. margin-top: -9px;
  1267. /*width: 40px;
  1268. height: 40px;*/
  1269. margin-right: 5px;
  1270. float: left;
  1271. }
  1272. .profile-img{
  1273. width: 100px;
  1274. height: 100px;
  1275. margin: 0 auto;
  1276. }
  1277. .profile-img .avatar-initials{
  1278. line-height: 100px !important;
  1279. }
  1280. #doorbell-email{
  1281. color: black;
  1282. }
  1283. .song-panel{
  1284. max-height: 400px;
  1285. overflow-y: scroll;
  1286. overflow-x: hidden;
  1287. }
  1288. .song-panel-room{
  1289. float: right;
  1290. }
  1291. /*Credit to: http://thecodeplayer.com/walkthrough/custom-animated-checkbox-inputs-using-css-iconfonts*/
  1292. #two-label {
  1293. position: relative;
  1294. padding-left: 30px;
  1295. font-size: 14px;
  1296. cursor: pointer;
  1297. margin-bottom: 15px;
  1298. color: white;
  1299. padding-top: 3px;
  1300. }
  1301. #two-label:before, #two-label:after {
  1302. font-family: FontAwesome;
  1303. font-size: 21px;
  1304. /*absolutely positioned*/
  1305. position: absolute; top: 0; left: 0;
  1306. }
  1307. #two-label:before {
  1308. content: '\f096'; /*unchecked*/
  1309. }
  1310. #two-label:after {
  1311. content: '\f046'; /*checked*/
  1312. /*checked icon will be hidden by default by using 0 max-width and overflow hidden*/
  1313. max-width: 0;
  1314. overflow: hidden;
  1315. opacity: 0.5;
  1316. /*CSS3 transitions for animated effect*/
  1317. transition: all 0.35s;
  1318. }
  1319. /*hiding the original checkboxes*/
  1320. input[type="checkbox"] {
  1321. display: none;
  1322. }
  1323. /*when the user checks the checkbox the checked icon will animate in*/
  1324. input[type="checkbox"]:checked + #two-label:after {
  1325. max-width: 25px; /*an arbitratry number more than the icon's width*/
  1326. opacity: 1; /*for fade in effect*/
  1327. }
  1328. #two+label:before, #two+label:after {color: hsl(180, 45%, 40%);}
  1329. /*End of checkbox awesomeness!*/
  1330. #chat-tab, #global-chat-tab {
  1331. -webkit-transition: background-color 500ms linear;
  1332. -moz-transition: background-color 500ms linear;
  1333. -ms-transition: background-color 500ms linear;
  1334. -o-transition: background-color 500ms linear;
  1335. transition: background-color 500ms linear;
  1336. }
  1337. .unread-messages {
  1338. background-color: orange;
  1339. }
  1340. .profile-action{
  1341. float: right;
  1342. }
  1343. #submit-name{
  1344. margin-left: 10px;
  1345. }
  1346. #submit-username{
  1347. margin-left: 10px;
  1348. }
  1349. .settings-option{
  1350. margin: 5px 0;
  1351. font-size: 1.2em;
  1352. }
  1353. .settings-input {
  1354. margin-bottom: 10px;
  1355. }
  1356. .disabled {
  1357. cursor: not-allowed;
  1358. opacity: 1;
  1359. background-color: rgba(235, 235, 228, 0.5) !important;
  1360. }
  1361. #youtube-playlist-button {
  1362. background-color: rgba(220, 25, 43, 1);
  1363. margin-right: auto;
  1364. margin-left: auto;
  1365. color: rgba(253, 253, 254, 1);
  1366. display: block;
  1367. }