app.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300);
  2. *{
  3. box-sizing: border-box;
  4. margin: 0;
  5. padding: 0;
  6. font-weight: 300;
  7. }
  8. body {
  9. font-family: 'Source Sans Pro', sans-serif;
  10. font-weight: 300;
  11. }
  12. body ::-webkit-input-placeholder {
  13. /* WebKit browsers */
  14. font-family: 'Source Sans Pro', sans-serif;
  15. font-weight: 300;
  16. }
  17. body :-moz-placeholder {
  18. /* Mozilla Firefox 4 to 18 */
  19. font-family: 'Source Sans Pro', sans-serif;
  20. opacity: 1;
  21. font-weight: 300;
  22. }
  23. body ::-moz-placeholder {
  24. /* Mozilla Firefox 19+ */
  25. font-family: 'Source Sans Pro', sans-serif;
  26. opacity: 1;
  27. font-weight: 300;
  28. }
  29. body :-ms-input-placeholder {
  30. /* Internet Explorer 10+ */
  31. font-family: 'Source Sans Pro', sans-serif;
  32. font-weight: 300;
  33. }
  34. ul {
  35. list-style: none;
  36. }
  37. .loginlanding {
  38. background: #50a3a2;
  39. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  40. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  41. position: absolute;
  42. /*top: 20%;*/
  43. left: 0;
  44. width: 100%;
  45. height: 100%; /*400px*/
  46. /*margin-top: -200px;*/
  47. overflow-x: hidden;
  48. overflow-y: auto;
  49. }
  50. .landing {
  51. background: #50a3a2;
  52. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  53. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  54. position: absolute;
  55. /*top: 20%;*/
  56. left: 0;
  57. width: 100%;
  58. height: 100%; /*400px*/
  59. /*margin-top: -200px;*/
  60. overflow-x: hidden;
  61. overflow-y: auto;
  62. }
  63. .container {
  64. max-width: 600px;
  65. margin: 0 auto;
  66. padding: 80px 0;
  67. height: 400px;
  68. text-align: center;
  69. }
  70. .container h1 {
  71. font-size: 40px;
  72. color: white;
  73. -webkit-transition-duration: 1s;
  74. transition-duration: 1s;
  75. -webkit-transition-timing-function: ease-in-put;
  76. transition-timing-function: ease-in-put;
  77. font-weight: 200;
  78. }
  79. .container p {
  80. font-size: 10px;
  81. color: white;
  82. -webkit-transition-duration: 1s;
  83. transition-duration: 1s;
  84. -webkit-transition-timing-function: ease-in-put;
  85. transition-timing-function: ease-in-put;
  86. font-weight: 200;
  87. }
  88. form {
  89. padding: 20px 0;
  90. position: relative;
  91. z-index: 2;
  92. }
  93. form input, #croom {
  94. -webkit-appearance: none;
  95. -moz-appearance: none;
  96. appearance: none;
  97. outline: 0;
  98. border: 1px solid rgba(255, 255, 255, 0.4);
  99. background-color: rgba(255, 255, 255, 0.2);
  100. width: 304px;
  101. border-radius: 3px;
  102. padding: 10px 15px;
  103. margin: 0 auto 10px auto;
  104. display: block;
  105. text-align: center;
  106. font-size: 18px;
  107. color: white;
  108. -webkit-transition-duration: 0.25s;
  109. transition-duration: 0.25s;
  110. font-weight: 300;
  111. }
  112. form input:hover {
  113. background-color: rgba(255, 255, 255, 0.4);
  114. }
  115. form input:focus {
  116. /*opacity: 0.4;*/
  117. width: 354px;
  118. color: white;
  119. }
  120. .g-recaptcha {
  121. -webkit-appearance: none;
  122. -moz-appearance: none;
  123. appearance: none;
  124. outline: 0;
  125. width: 304px;
  126. margin: 0 auto 10px auto;
  127. display: block;
  128. text-align: center;
  129. font-size: 18px;
  130. color: white;
  131. -webkit-transition-duration: 0.25s;
  132. transition-duration: 0.25s;
  133. font-weight: 300;
  134. }
  135. form button {
  136. -webkit-appearance: none;
  137. -moz-appearance: none;
  138. appearance: none;
  139. outline: 0;
  140. background-color: white;
  141. border: 0;
  142. padding: 10px 15px;
  143. color: #53e3a6;
  144. border-radius: 3px;
  145. width: 304px;
  146. cursor: pointer;
  147. font-size: 18px;
  148. -webkit-transition-duration: 0.25s;
  149. transition-duration: 0.25s;
  150. }
  151. ::-webkit-input-placeholder {
  152. color: white;
  153. }
  154. ::-moz-placeholder { /* Firefox 19+ */
  155. color: white;
  156. }
  157. :-ms-input-placeholder {
  158. color: white;
  159. }
  160. form button:hover {
  161. background-color: #f5f7f9;
  162. }
  163. .bg-bubbles {
  164. top: 0;
  165. left: 0;
  166. width: 100%;
  167. height: 100%;
  168. position: absolute;
  169. z-index: 1;
  170. margin: 0px;
  171. pointer-events: none;
  172. }
  173. .bg-bubbles li {
  174. position: absolute;
  175. list-style: none;
  176. display: block;
  177. width: 40px;
  178. height: 40px;
  179. border-radius: 100px;
  180. background-color: rgba(255, 255, 255, 0.15);
  181. bottom: 0px;
  182. -webkit-animation: square 25s infinite;
  183. animation: square 25s infinite;
  184. -webkit-transition-timing-function: linear;
  185. transition-timing-function: linear;
  186. }
  187. .bg-bubbles li:nth-child(1) {
  188. left: 10%;
  189. }
  190. .bg-bubbles li:nth-child(2) {
  191. left: 20%;
  192. width: 80px;
  193. height: 80px;
  194. -webkit-animation-delay: 2s;
  195. animation-delay: 2s;
  196. -webkit-animation-duration: 17s;
  197. animation-duration: 17s;
  198. }
  199. .bg-bubbles li:nth-child(3) {
  200. left: 25%;
  201. -webkit-animation-delay: 4s;
  202. animation-delay: 4s;
  203. }
  204. .bg-bubbles li:nth-child(4) {
  205. left: 40%;
  206. width: 60px;
  207. height: 60px;
  208. -webkit-animation-duration: 22s;
  209. animation-duration: 22s;
  210. background-color: rgba(255, 255, 255, 0.25);
  211. }
  212. .bg-bubbles li:nth-child(5) {
  213. left: 70%;
  214. }
  215. .bg-bubbles li:nth-child(6) {
  216. left: 80%;
  217. width: 120px;
  218. height: 120px;
  219. -webkit-animation-delay: 3s;
  220. animation-delay: 3s;
  221. background-color: rgba(255, 255, 255, 0.2);
  222. }
  223. .bg-bubbles li:nth-child(7) {
  224. left: 32%;
  225. width: 160px;
  226. height: 160px;
  227. -webkit-animation-delay: 7s;
  228. animation-delay: 7s;
  229. }
  230. .bg-bubbles li:nth-child(8) {
  231. left: 55%;
  232. width: 20px;
  233. height: 20px;
  234. -webkit-animation-delay: 15s;
  235. animation-delay: 15s;
  236. -webkit-animation-duration: 40s;
  237. animation-duration: 40s;
  238. }
  239. .bg-bubbles li:nth-child(9) {
  240. left: 25%;
  241. width: 10px;
  242. height: 10px;
  243. -webkit-animation-delay: 2s;
  244. animation-delay: 2s;
  245. -webkit-animation-duration: 40s;
  246. animation-duration: 40s;
  247. background-color: rgba(255, 255, 255, 0.3);
  248. }
  249. .bg-bubbles li:nth-child(10) {
  250. left: 90%;
  251. width: 160px;
  252. height: 160px;
  253. -webkit-animation-delay: 11s;
  254. animation-delay: 11s;
  255. }
  256. @-webkit-keyframes square {
  257. 0% {
  258. -webkit-transform: translateY(0);
  259. transform: translateY(0);
  260. }
  261. 100% {
  262. -webkit-transform: translateY(-700px) rotate(600deg);
  263. transform: translateY(-700px) rotate(600deg);
  264. }
  265. }
  266. @keyframes square {
  267. 0% {
  268. -webkit-transform: translateY(0);
  269. transform: translateY(0);
  270. }
  271. 100% {
  272. -webkit-transform: translateY(-700px) rotate(600deg);
  273. transform: translateY(-700px) rotate(600deg);
  274. }
  275. }
  276. .fa-facebook{
  277. margin-top: 3px;
  278. }
  279. #facebook-login{
  280. background-color: #3b5998;
  281. }
  282. .fa-github{
  283. margin-top: 3px;
  284. }
  285. #github-login{
  286. background-color: #999;
  287. margin-bottom: 100px;
  288. }
  289. .btn-social{
  290. -webkit-appearance: none;
  291. -moz-appearance: none;
  292. appearance: none;
  293. outline: 0;
  294. border: 0;
  295. padding: 10px 15px;
  296. border-radius: 3px;
  297. width: 304px;
  298. cursor: pointer;
  299. font-size: 18px;
  300. color: #fff;
  301. }
  302. footer {
  303. text-align: center;
  304. position:absolute;
  305. bottom:0;
  306. width:100%;
  307. height:60px; /* Height of the footer */
  308. padding: 0;
  309. color: white;
  310. }
  311. footer a{
  312. color: white;
  313. }
  314. footer a:hover{
  315. color: white;
  316. }
  317. .button {
  318. -webkit-appearance: none;
  319. -moz-appearance: none;
  320. appearance: none;
  321. outline: 0;
  322. background-color: white;
  323. border: 0;
  324. padding: 10px 15px;
  325. color: #53e3a6;
  326. border-radius: 3px;
  327. width: 304px;
  328. cursor: pointer;
  329. font-size: 18px;
  330. -webkit-transition-duration: 0.25s;
  331. transition-duration: 0.25s;
  332. }
  333. .button:hover {
  334. background-color: #f5f7f9;
  335. }
  336. .logout{
  337. position: fixed;
  338. top: 2px;
  339. left: 2px;
  340. background-color: white;
  341. padding: 12px;
  342. cursor: pointer;
  343. border-radius: 100%;
  344. z-index: 2;
  345. width: 38px;
  346. height: 38px;
  347. text-align: center;
  348. }
  349. .station{
  350. background-color: rgba(102,205,170,0.7);
  351. height: 300px;
  352. width: 300px;
  353. border-radius: 100%;
  354. text-align: center;
  355. color: white;
  356. font-family: Sans-serif;
  357. /*float: left;*/
  358. margin-right: auto;
  359. margin-left: auto;
  360. position: relative;
  361. }
  362. .station > h3 {
  363. line-height: 200px;
  364. font-size: 42px;
  365. }
  366. .station > h5 {
  367. margin-top: -40px;
  368. font-size: 15px;
  369. }
  370. .room-name{
  371. font-size: 3.5em;
  372. color: white;
  373. font-weight: 600;
  374. text-align: center;
  375. }
  376. .room-title{
  377. font-size: 2.5em;
  378. color: white;
  379. font-weight: 600;
  380. margin-left: 35px;
  381. }
  382. .room-artist{
  383. font-size: 2em;
  384. color: white;
  385. margin-left: 35px;
  386. }
  387. #seeker-bar{
  388. background-color: black;
  389. width: 0;
  390. height: 5px;
  391. clear: both;
  392. background-color: rgb(16, 140, 146);
  393. }
  394. .privacy {
  395. margin: 0 auto;
  396. padding: 100px 0;
  397. height: 900px;
  398. text-align: center;
  399. }
  400. .terms {
  401. margin: 0 auto;
  402. padding: 100px 0;
  403. height: 900px;
  404. text-align: center;
  405. }
  406. .song-input{
  407. -webkit-appearance: none;
  408. -moz-appearance: none;
  409. appearance: none;
  410. outline: 0;
  411. border: 1px solid rgba(255, 255, 255, 0.4);
  412. background-color: rgba(255, 255, 255, 0.2);
  413. width: 304px;
  414. border-radius: 3px;
  415. padding: 10px 15px;
  416. margin: 1em auto 10px auto;
  417. display: block;
  418. text-align: center;
  419. font-size: 18px;
  420. color: white;
  421. -webkit-transition-duration: 0.25s;
  422. transition-duration: 0.25s;
  423. font-weight: 300;
  424. }
  425. .song-input-select{
  426. -webkit-appearance: none;
  427. -moz-appearance: none;
  428. appearance: none;
  429. outline: 0;
  430. border: 1px solid rgba(255, 255, 255, 0.4);
  431. background-color: rgba(255, 255, 255, 0.2);
  432. width: 304px;
  433. border-radius: 3px;
  434. padding: 10px 15px;
  435. margin: 1em auto 10px auto;
  436. display: block;
  437. text-align: center;
  438. font-size: 18px;
  439. color: white;
  440. -webkit-transition-duration: 0.25s;
  441. transition-duration: 0.25s;
  442. font-weight: 300;
  443. }
  444. .song-input:hover {
  445. background-color: rgba(255, 255, 255, 0.4);
  446. }
  447. .song-input:focus {
  448. background-color: rgba(255, 255, 255, 0.4);
  449. }
  450. .song-input-select:hover {
  451. background-color: rgba(255, 255, 255, 0.4);
  452. }
  453. .song-input-select > option {
  454. color: black;
  455. background-color: rgba(255, 255, 255, 0.2);
  456. }
  457. .song-input:focus {
  458. width: 354px;
  459. color: white;
  460. }
  461. #search-song{
  462. display: block;
  463. margin: 0 auto;
  464. }
  465. #song-results{
  466. margin: 0 auto;
  467. color: white;
  468. margin-top: 1em;
  469. font-size: 1.5em;
  470. text-align: center;
  471. }
  472. #song-results p{
  473. margin: 0;
  474. padding: 5px;
  475. }
  476. #song-results p:hover{
  477. background-color: cadetblue;
  478. cursor: pointer;
  479. }
  480. #player {
  481. visibility: hidden;
  482. height: 0;
  483. }
  484. .footerButtons {
  485. background:none!important;
  486. border:none;
  487. padding:0!important;
  488. font: inherit;
  489. cursor: pointer;
  490. }
  491. .footerButtons:hover {
  492. background-color: #f5f7f9;
  493. }
  494. .current{
  495. width: 210px;
  496. margin-left: 35px;
  497. }
  498. #seeker-container {
  499. width: calc(100% - 70px);
  500. margin-left: 35px;
  501. margin-right: 35px;
  502. overflow: hidden;
  503. }
  504. .pl-container{
  505. color: white;
  506. font-size: 1.5em;
  507. margin-left: 35px;
  508. }
  509. .pl-container h4{
  510. text-decoration: underline;
  511. }
  512. #spinner {
  513. font-size: 200px;
  514. color: bisque;
  515. }
  516. #spinner-container {
  517. margin-left: auto;
  518. margin-right: auto;
  519. width: 200px;
  520. margin-top: 10%;
  521. }
  522. #croom_container {
  523. margin-left: auto;
  524. margin-right: auto;
  525. margin-bottom: 100px;
  526. width: 304px !important;
  527. }
  528. #croom_label {
  529. color: white;
  530. }
  531. #croom {
  532. width: 304px !important;
  533. }
  534. #spinner {
  535. font-size: 200px;
  536. color: bisque;
  537. }
  538. #spinner-container {
  539. margin-left: auto;
  540. margin-right: auto;
  541. width: 200px;
  542. margin-top: 10%;
  543. }
  544. #song-modal{
  545. margin: 10px 0 10px 35px;
  546. }
  547. .modal-content{
  548. background-color: rgb(107, 197, 164);
  549. color: white;
  550. }
  551. .song-input-label {
  552. width: 100%;
  553. text-align: center;
  554. }
  555. .station_link {
  556. position:absolute;
  557. width:100%;
  558. height:100%;
  559. top:0;
  560. left: 0;
  561. border-radius: 100%;
  562. }