app.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  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: hidden;
  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: scroll;
  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 {
  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 !important;
  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: 0px;
  168. z-index: 1;
  169. }
  170. .bg-bubbles li {
  171. position: absolute;
  172. list-style: none;
  173. display: block;
  174. width: 40px;
  175. height: 40px;
  176. border-radius: 100px;
  177. background-color: rgba(255, 255, 255, 0.15);
  178. bottom: -160px;
  179. -webkit-animation: square 25s infinite;
  180. animation: square 25s infinite;
  181. -webkit-transition-timing-function: linear;
  182. transition-timing-function: linear;
  183. }
  184. .bg-bubbles li:nth-child(1) {
  185. left: 10%;
  186. }
  187. .bg-bubbles li:nth-child(2) {
  188. left: 20%;
  189. width: 80px;
  190. height: 80px;
  191. -webkit-animation-delay: 2s;
  192. animation-delay: 2s;
  193. -webkit-animation-duration: 17s;
  194. animation-duration: 17s;
  195. }
  196. .bg-bubbles li:nth-child(3) {
  197. left: 25%;
  198. -webkit-animation-delay: 4s;
  199. animation-delay: 4s;
  200. }
  201. .bg-bubbles li:nth-child(4) {
  202. left: 40%;
  203. width: 60px;
  204. height: 60px;
  205. -webkit-animation-duration: 22s;
  206. animation-duration: 22s;
  207. background-color: rgba(255, 255, 255, 0.25);
  208. }
  209. .bg-bubbles li:nth-child(5) {
  210. left: 70%;
  211. }
  212. .bg-bubbles li:nth-child(6) {
  213. left: 80%;
  214. width: 120px;
  215. height: 120px;
  216. -webkit-animation-delay: 3s;
  217. animation-delay: 3s;
  218. background-color: rgba(255, 255, 255, 0.2);
  219. }
  220. .bg-bubbles li:nth-child(7) {
  221. left: 32%;
  222. width: 160px;
  223. height: 160px;
  224. -webkit-animation-delay: 7s;
  225. animation-delay: 7s;
  226. }
  227. .bg-bubbles li:nth-child(8) {
  228. left: 55%;
  229. width: 20px;
  230. height: 20px;
  231. -webkit-animation-delay: 15s;
  232. animation-delay: 15s;
  233. -webkit-animation-duration: 40s;
  234. animation-duration: 40s;
  235. }
  236. .bg-bubbles li:nth-child(9) {
  237. left: 25%;
  238. width: 10px;
  239. height: 10px;
  240. -webkit-animation-delay: 2s;
  241. animation-delay: 2s;
  242. -webkit-animation-duration: 40s;
  243. animation-duration: 40s;
  244. background-color: rgba(255, 255, 255, 0.3);
  245. }
  246. .bg-bubbles li:nth-child(10) {
  247. left: 90%;
  248. width: 160px;
  249. height: 160px;
  250. -webkit-animation-delay: 11s;
  251. animation-delay: 11s;
  252. }
  253. @-webkit-keyframes square {
  254. 0% {
  255. -webkit-transform: translateY(0);
  256. transform: translateY(0);
  257. }
  258. 100% {
  259. -webkit-transform: translateY(-700px) rotate(600deg);
  260. transform: translateY(-700px) rotate(600deg);
  261. }
  262. }
  263. @keyframes square {
  264. 0% {
  265. -webkit-transform: translateY(0);
  266. transform: translateY(0);
  267. }
  268. 100% {
  269. -webkit-transform: translateY(-700px) rotate(600deg);
  270. transform: translateY(-700px) rotate(600deg);
  271. }
  272. }
  273. .fa-facebook{
  274. margin-top: 3px;
  275. }
  276. #facebook-login{
  277. background-color: #3b5998;
  278. }
  279. .fa-github{
  280. margin-top: 3px;
  281. }
  282. #github-login{
  283. background-color: #999;
  284. }
  285. .btn-social{
  286. -webkit-appearance: none;
  287. -moz-appearance: none;
  288. appearance: none;
  289. outline: 0;
  290. border: 0;
  291. padding: 10px 15px;
  292. border-radius: 3px;
  293. width: 304px;
  294. cursor: pointer;
  295. font-size: 18px;
  296. color: #fff;
  297. }
  298. footer {
  299. text-align: center;
  300. position:absolute;
  301. bottom:0;
  302. width:100%;
  303. height:60px; /* Height of the footer */
  304. padding: 0;
  305. color: white;
  306. }
  307. footer a{
  308. color: white;
  309. }
  310. footer a:hover{
  311. color: white;
  312. }
  313. .button {
  314. -webkit-appearance: none;
  315. -moz-appearance: none;
  316. appearance: none;
  317. outline: 0;
  318. background-color: white;
  319. border: 0;
  320. padding: 10px 15px;
  321. color: #53e3a6;
  322. border-radius: 3px;
  323. width: 304px;
  324. cursor: pointer;
  325. font-size: 18px;
  326. -webkit-transition-duration: 0.25s;
  327. transition-duration: 0.25s;
  328. }
  329. .button:hover {
  330. background-color: #f5f7f9;
  331. }
  332. .logout{
  333. margin-left: 20px;
  334. cursor: pointer;
  335. }
  336. .station{
  337. background-color: rgba(102,205,170,0.7);
  338. height: 300px;
  339. width: 300px;
  340. border-radius: 100%;
  341. text-align: center;
  342. color: white;
  343. font-family: Sans-serif;
  344. /*float: left;*/
  345. margin-right: auto;
  346. margin-left: auto;
  347. }
  348. .station > h3 {
  349. line-height: 200px;
  350. font-size: 42px;
  351. }
  352. .station > h5 {
  353. margin-top: -40px;
  354. font-size: 15px;
  355. }
  356. .room-name{
  357. font-size: 3.5em;
  358. color: white;
  359. font-weight: 600;
  360. text-align: center;
  361. }
  362. .room-title{
  363. font-size: 2.5em;
  364. color: white;
  365. font-weight: 600;
  366. margin-left: 35px;
  367. }
  368. .room-artist{
  369. font-size: 2em;
  370. color: white;
  371. margin-left: 35px;
  372. }
  373. #seeker-bar{
  374. background-color: black;
  375. width: 0;
  376. height: 5px;
  377. clear: both;
  378. background-color: rgb(16, 140, 146);
  379. }
  380. .privacy {
  381. margin: 0 auto;
  382. padding: 100px 0;
  383. height: 900px;
  384. text-align: center;
  385. }
  386. .terms {
  387. margin: 0 auto;
  388. padding: 100px 0;
  389. height: 900px;
  390. text-align: center;
  391. }
  392. #song-input{
  393. -webkit-appearance: none;
  394. -moz-appearance: none;
  395. appearance: none;
  396. outline: 0;
  397. border: 1px solid rgba(255, 255, 255, 0.4);
  398. background-color: rgba(255, 255, 255, 0.2);
  399. width: 304px;
  400. border-radius: 3px;
  401. padding: 10px 15px;
  402. margin: 1em auto 10px auto;
  403. display: block;
  404. text-align: center;
  405. font-size: 18px;
  406. color: white;
  407. -webkit-transition-duration: 0.25s;
  408. transition-duration: 0.25s;
  409. font-weight: 300;
  410. }
  411. #search-song{
  412. display: block;
  413. margin: 0 auto;
  414. }
  415. #song-results{
  416. margin: 0 auto;
  417. color: white;
  418. margin-top: 1em;
  419. font-size: 1.5em;
  420. width: 500px;
  421. text-align: center;
  422. }
  423. #song-results p{
  424. margin: 0;
  425. padding: 5px;
  426. }
  427. #song-results p:hover{
  428. background-color: cadetblue;
  429. cursor: pointer;
  430. }
  431. @media (max-width: 992px) {
  432. .station {
  433. background-color: red;
  434. }
  435. }
  436. #player {
  437. visibility: hidden;
  438. }
  439. .footerButtons {
  440. background:none!important;
  441. border:none;
  442. padding:0!important;
  443. font: inherit;
  444. cursor: pointer;
  445. }
  446. .footerButtons:hover {
  447. background-color: #f5f7f9;
  448. }
  449. #albumart{
  450. width: 170px;
  451. margin-left: 35px;
  452. }
  453. #seeker-container {
  454. width: calc(100% - 70px);
  455. margin-left: 35px;
  456. margin-right: 35px;
  457. overflow: hidden;
  458. }