app.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  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-nowidth {
  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. cursor: pointer;
  328. font-size: 18px;
  329. -webkit-transition-duration: 0.25s;
  330. transition-duration: 0.25s;
  331. }
  332. .button-nowidth:hover {
  333. background-color: #f5f7f9;
  334. }
  335. .button {
  336. -webkit-appearance: none;
  337. -moz-appearance: none;
  338. appearance: none;
  339. outline: 0;
  340. background-color: white;
  341. border: 0;
  342. padding: 10px 15px;
  343. color: #53e3a6;
  344. border-radius: 3px;
  345. width: 304px;
  346. cursor: pointer;
  347. font-size: 18px;
  348. -webkit-transition-duration: 0.25s;
  349. transition-duration: 0.25s;
  350. }
  351. .button:hover {
  352. background-color: #f5f7f9;
  353. }
  354. .station{
  355. background-color: rgba(102,205,170,0.7);
  356. height: 300px;
  357. width: 300px;
  358. border-radius: 100%;
  359. text-align: center;
  360. color: white;
  361. font-family: Sans-serif;
  362. /*float: left;*/
  363. margin-right: auto;
  364. margin-left: auto;
  365. position: relative;
  366. }
  367. .station > h3 {
  368. line-height: 200px;
  369. font-size: 42px;
  370. }
  371. .station > h5 {
  372. margin-top: -40px;
  373. font-size: 15px;
  374. }
  375. .room-name{
  376. font-size: 3.5em;
  377. color: white;
  378. font-weight: 600;
  379. text-align: center;
  380. }
  381. .room-title{
  382. font-size: 2.5em;
  383. color: white;
  384. font-weight: 600;
  385. margin-left: 35px;
  386. }
  387. .room-artist{
  388. font-size: 2em;
  389. color: white;
  390. margin-left: 35px;
  391. }
  392. #seeker-bar{
  393. background-color: black;
  394. width: 0;
  395. height: 5px;
  396. clear: both;
  397. background-color: rgb(16, 140, 146);
  398. }
  399. .privacy {
  400. margin: 0 auto;
  401. padding: 100px 0;
  402. height: 900px;
  403. text-align: center;
  404. }
  405. .terms {
  406. margin: 0 auto;
  407. padding: 100px 0;
  408. height: 900px;
  409. text-align: center;
  410. }
  411. .song-input{
  412. -webkit-appearance: none;
  413. -moz-appearance: none;
  414. appearance: none;
  415. outline: 0;
  416. border: 1px solid rgba(255, 255, 255, 0.4);
  417. background-color: rgba(255, 255, 255, 0.2);
  418. width: 304px;
  419. border-radius: 3px;
  420. padding: 10px 15px;
  421. margin: 1em auto 10px auto;
  422. display: block;
  423. text-align: center;
  424. font-size: 18px;
  425. color: white;
  426. -webkit-transition-duration: 0.25s;
  427. transition-duration: 0.25s;
  428. font-weight: 300;
  429. }
  430. #chat-input {
  431. -webkit-appearance: none;
  432. -moz-appearance: none;
  433. appearance: none;
  434. outline: 0;
  435. border: 1px solid rgba(83, 227, 166, 0.4);
  436. background-color: rgba(83, 227, 166, 0.2);
  437. width: 100%;
  438. border-radius: 3px;
  439. padding: 10px 15px;
  440. margin: 1em auto 10px auto;
  441. display: block;
  442. text-align: left;
  443. font-size: 18px;
  444. color: #53e3a6;
  445. -webkit-transition-duration: 0.25s;
  446. transition-duration: 0.25s;
  447. font-weight: 300;
  448. }
  449. .song-input-select{
  450. -webkit-appearance: none;
  451. -moz-appearance: none;
  452. appearance: none;
  453. outline: 0;
  454. border: 1px solid rgba(255, 255, 255, 0.4);
  455. background-color: rgba(255, 255, 255, 0.2);
  456. width: 304px;
  457. border-radius: 3px;
  458. padding: 10px 15px;
  459. margin: 1em auto 10px auto;
  460. display: block;
  461. text-align: center;
  462. font-size: 18px;
  463. color: white;
  464. -webkit-transition-duration: 0.25s;
  465. transition-duration: 0.25s;
  466. font-weight: 300;
  467. }
  468. .song-input:hover {
  469. background-color: rgba(255, 255, 255, 0.4);
  470. }
  471. .song-input:focus {
  472. background-color: rgba(255, 255, 255, 0.4);
  473. }
  474. .song-input-select:hover {
  475. background-color: rgba(255, 255, 255, 0.4);
  476. }
  477. .song-input-select > option {
  478. color: black;
  479. background-color: rgba(255, 255, 255, 0.2);
  480. }
  481. .song-input:focus {
  482. width: 354px;
  483. color: white;
  484. }
  485. #search-song{
  486. display: block;
  487. margin: 0 auto;
  488. }
  489. #song-results{
  490. margin: 0 auto;
  491. color: white;
  492. margin-top: 1em;
  493. font-size: 1.5em;
  494. text-align: center;
  495. }
  496. #song-results p{
  497. margin: 0;
  498. padding: 5px;
  499. }
  500. #song-results p:hover{
  501. background-color: cadetblue;
  502. cursor: pointer;
  503. }
  504. #player {
  505. visibility: hidden;
  506. height: 0;
  507. }
  508. .footerButtons {
  509. background:none!important;
  510. border:none;
  511. padding:0!important;
  512. font: inherit;
  513. cursor: pointer;
  514. }
  515. .footerButtons:hover {
  516. background-color: #f5f7f9;
  517. }
  518. .song-img {
  519. width: 210px;
  520. margin-left: 35px;
  521. }
  522. #seeker-container {
  523. width: calc(100% - 70px);
  524. margin-left: 20px;
  525. margin-right: 35px;
  526. overflow: hidden;
  527. }
  528. .pl-container{
  529. color: #53e3a6;
  530. background-color: white;
  531. border-radius: 3px;
  532. font-size: 18px;
  533. }
  534. .pl-container h4{
  535. text-align: center;
  536. font-size: 40px;
  537. margin-bottom: 10px;
  538. }
  539. #spinner {
  540. font-size: 200px;
  541. color: bisque;
  542. }
  543. #spinner-container {
  544. margin-left: auto;
  545. margin-right: auto;
  546. width: 200px;
  547. margin-top: 10%;
  548. }
  549. #croom_container {
  550. margin-left: auto;
  551. margin-right: auto;
  552. margin-bottom: 100px;
  553. width: 304px !important;
  554. }
  555. #croom_label {
  556. color: white;
  557. }
  558. #croom {
  559. width: 304px !important;
  560. }
  561. #spinner {
  562. font-size: 200px;
  563. color: bisque;
  564. }
  565. #spinner-container {
  566. margin-left: auto;
  567. margin-right: auto;
  568. width: 200px;
  569. margin-top: 10%;
  570. }
  571. #song-modal{
  572. margin-top: 40px;
  573. margin-bottom: 40px;
  574. }
  575. .modal-content{
  576. background-color: rgb(107, 197, 164);
  577. color: white;
  578. }
  579. .song-input-label {
  580. width: 100%;
  581. text-align: center;
  582. }
  583. .station_link {
  584. position:absolute;
  585. width:100%;
  586. height:100%;
  587. top:0;
  588. left: 0;
  589. border-radius: 100%;
  590. }
  591. #playlist {
  592. }
  593. #s2 {
  594. opacity: 0.66666666666666;
  595. }
  596. #s3 {
  597. opacity: 0.33333333333333;
  598. }
  599. #add-song-button{
  600. display: block;
  601. margin: 0 auto;
  602. }
  603. .alert{
  604. text-align: center;
  605. }
  606. @media (max-width: 992px) {
  607. /* some think */
  608. #s3 {
  609. visibility: hidden;
  610. height: 0;
  611. }
  612. }
  613. @media (max-width: 768px) {
  614. /* some think */
  615. #s2 {
  616. visibility: hidden;
  617. height: 0;
  618. }
  619. }
  620. .column-small {
  621. width: 1px;
  622. }
  623. #return {
  624. display: block;
  625. margin: 0 auto 20px auto;
  626. }
  627. #chat {
  628. margin-top: 100px;
  629. }
  630. #chat-container {
  631. padding: 0;
  632. }
  633. .chat-message {
  634. font-size: 20px;
  635. color: #53e3a6;
  636. }
  637. #chat-ul {
  638. max-height: 500px;
  639. overflow-y: scroll;
  640. border: 1px solid rgba(83, 227, 166, 0.4);
  641. }
  642. #submit-message {
  643. background-color: #53e3a6;
  644. color: white;
  645. }
  646. .chat-message:nth-child(even) {
  647. background-color: white;
  648. }
  649. .chat-message:nth-child(odd) {
  650. background-color: #F2F2F2;
  651. }
  652. #header {
  653. margin-bottom: 0px;
  654. }