app.css 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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. .landing {
  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: scroll;
  49. }
  50. .container {
  51. max-width: 600px;
  52. margin: 0 auto;
  53. padding: 80px 0;
  54. height: 400px;
  55. text-align: center;
  56. }
  57. .container h1 {
  58. font-size: 40px;
  59. color: white;
  60. -webkit-transition-duration: 1s;
  61. transition-duration: 1s;
  62. -webkit-transition-timing-function: ease-in-put;
  63. transition-timing-function: ease-in-put;
  64. font-weight: 200;
  65. }
  66. .container p {
  67. font-size: 10px;
  68. color: white;
  69. -webkit-transition-duration: 1s;
  70. transition-duration: 1s;
  71. -webkit-transition-timing-function: ease-in-put;
  72. transition-timing-function: ease-in-put;
  73. font-weight: 200;
  74. }
  75. form {
  76. padding: 20px 0;
  77. position: relative;
  78. z-index: 2;
  79. }
  80. form input {
  81. -webkit-appearance: none;
  82. -moz-appearance: none;
  83. appearance: none;
  84. outline: 0;
  85. border: 1px solid rgba(255, 255, 255, 0.4);
  86. background-color: rgba(255, 255, 255, 0.2);
  87. width: 304px;
  88. border-radius: 3px;
  89. padding: 10px 15px;
  90. margin: 0 auto 10px auto;
  91. display: block;
  92. text-align: center;
  93. font-size: 18px;
  94. color: white;
  95. -webkit-transition-duration: 0.25s;
  96. transition-duration: 0.25s;
  97. font-weight: 300;
  98. }
  99. form input:hover {
  100. background-color: rgba(255, 255, 255, 0.4);
  101. }
  102. form input:focus {
  103. /*opacity: 0.4;*/
  104. width: 354px !important;
  105. color: white;
  106. }
  107. .g-recaptcha {
  108. -webkit-appearance: none;
  109. -moz-appearance: none;
  110. appearance: none;
  111. outline: 0;
  112. width: 304px;
  113. margin: 0 auto 10px auto;
  114. display: block;
  115. text-align: center;
  116. font-size: 18px;
  117. color: white;
  118. -webkit-transition-duration: 0.25s;
  119. transition-duration: 0.25s;
  120. font-weight: 300;
  121. }
  122. form button {
  123. -webkit-appearance: none;
  124. -moz-appearance: none;
  125. appearance: none;
  126. outline: 0;
  127. background-color: white;
  128. border: 0;
  129. padding: 10px 15px;
  130. color: #53e3a6;
  131. border-radius: 3px;
  132. width: 304px;
  133. cursor: pointer;
  134. font-size: 18px;
  135. -webkit-transition-duration: 0.25s;
  136. transition-duration: 0.25s;
  137. }
  138. ::-webkit-input-placeholder {
  139. color: white;
  140. }
  141. ::-moz-placeholder { /* Firefox 19+ */
  142. color: white;
  143. }
  144. :-ms-input-placeholder {
  145. color: white;
  146. }
  147. form button:hover {
  148. background-color: #f5f7f9;
  149. }
  150. .bg-bubbles {
  151. top: 0;
  152. left: 0;
  153. width: 100%;
  154. height: 0px;
  155. z-index: 1;
  156. }
  157. .bg-bubbles li {
  158. position: absolute;
  159. list-style: none;
  160. display: block;
  161. width: 40px;
  162. height: 40px;
  163. border-radius: 100px;
  164. background-color: rgba(255, 255, 255, 0.15);
  165. bottom: -160px;
  166. -webkit-animation: square 25s infinite;
  167. animation: square 25s infinite;
  168. -webkit-transition-timing-function: linear;
  169. transition-timing-function: linear;
  170. }
  171. .bg-bubbles li:nth-child(1) {
  172. left: 10%;
  173. }
  174. .bg-bubbles li:nth-child(2) {
  175. left: 20%;
  176. width: 80px;
  177. height: 80px;
  178. -webkit-animation-delay: 2s;
  179. animation-delay: 2s;
  180. -webkit-animation-duration: 17s;
  181. animation-duration: 17s;
  182. }
  183. .bg-bubbles li:nth-child(3) {
  184. left: 25%;
  185. -webkit-animation-delay: 4s;
  186. animation-delay: 4s;
  187. }
  188. .bg-bubbles li:nth-child(4) {
  189. left: 40%;
  190. width: 60px;
  191. height: 60px;
  192. -webkit-animation-duration: 22s;
  193. animation-duration: 22s;
  194. background-color: rgba(255, 255, 255, 0.25);
  195. }
  196. .bg-bubbles li:nth-child(5) {
  197. left: 70%;
  198. }
  199. .bg-bubbles li:nth-child(6) {
  200. left: 80%;
  201. width: 120px;
  202. height: 120px;
  203. -webkit-animation-delay: 3s;
  204. animation-delay: 3s;
  205. background-color: rgba(255, 255, 255, 0.2);
  206. }
  207. .bg-bubbles li:nth-child(7) {
  208. left: 32%;
  209. width: 160px;
  210. height: 160px;
  211. -webkit-animation-delay: 7s;
  212. animation-delay: 7s;
  213. }
  214. .bg-bubbles li:nth-child(8) {
  215. left: 55%;
  216. width: 20px;
  217. height: 20px;
  218. -webkit-animation-delay: 15s;
  219. animation-delay: 15s;
  220. -webkit-animation-duration: 40s;
  221. animation-duration: 40s;
  222. }
  223. .bg-bubbles li:nth-child(9) {
  224. left: 25%;
  225. width: 10px;
  226. height: 10px;
  227. -webkit-animation-delay: 2s;
  228. animation-delay: 2s;
  229. -webkit-animation-duration: 40s;
  230. animation-duration: 40s;
  231. background-color: rgba(255, 255, 255, 0.3);
  232. }
  233. .bg-bubbles li:nth-child(10) {
  234. left: 90%;
  235. width: 160px;
  236. height: 160px;
  237. -webkit-animation-delay: 11s;
  238. animation-delay: 11s;
  239. }
  240. @-webkit-keyframes square {
  241. 0% {
  242. -webkit-transform: translateY(0);
  243. transform: translateY(0);
  244. }
  245. 100% {
  246. -webkit-transform: translateY(-700px) rotate(600deg);
  247. transform: translateY(-700px) rotate(600deg);
  248. }
  249. }
  250. @keyframes square {
  251. 0% {
  252. -webkit-transform: translateY(0);
  253. transform: translateY(0);
  254. }
  255. 100% {
  256. -webkit-transform: translateY(-700px) rotate(600deg);
  257. transform: translateY(-700px) rotate(600deg);
  258. }
  259. }
  260. .fa-facebook{
  261. margin-top: 3px;
  262. }
  263. #facebook-login{
  264. background-color: #3b5998;
  265. }
  266. .fa-github{
  267. margin-top: 3px;
  268. }
  269. #github-login{
  270. background-color: #999;
  271. }
  272. .btn-social{
  273. -webkit-appearance: none;
  274. -moz-appearance: none;
  275. appearance: none;
  276. outline: 0;
  277. border: 0;
  278. padding: 10px 15px;
  279. border-radius: 3px;
  280. width: 304px;
  281. cursor: pointer;
  282. font-size: 18px;
  283. color: #fff;
  284. }
  285. footer {
  286. text-align: center;
  287. position:absolute;
  288. bottom:0;
  289. width:100%;
  290. height:60px; /* Height of the footer */
  291. padding: 0;
  292. color: white;
  293. }
  294. footer a{
  295. color: white;
  296. }
  297. footer a:hover{
  298. color: white;
  299. }
  300. .button {
  301. -webkit-appearance: none;
  302. -moz-appearance: none;
  303. appearance: none;
  304. outline: 0;
  305. background-color: white;
  306. border: 0;
  307. padding: 10px 15px;
  308. color: #53e3a6;
  309. border-radius: 3px;
  310. width: 304px;
  311. cursor: pointer;
  312. font-size: 18px;
  313. -webkit-transition-duration: 0.25s;
  314. transition-duration: 0.25s;
  315. }
  316. .button:hover {
  317. background-color: #f5f7f9;
  318. }
  319. .logout{
  320. margin-left: 20px;
  321. cursor: pointer;
  322. }
  323. .station{
  324. background-color: rgba(102,205,170,0.7);
  325. height: 300px;
  326. width: 300px;
  327. border-radius: 100%;
  328. text-align: center;
  329. color: white;
  330. font-family: Sans-serif;
  331. /*float: left;*/
  332. margin-right: auto;
  333. margin-left: auto;
  334. }
  335. .station > h3 {
  336. line-height: 200px;
  337. font-size: 42px;
  338. }
  339. .station > h5 {
  340. margin-top: -40px;
  341. font-size: 15px;
  342. }
  343. .room-name{
  344. font-size: 3.5em;
  345. color: white;
  346. font-weight: 600;
  347. text-align: center;
  348. }
  349. .room-title{
  350. font-size: 2.5em;
  351. color: white;
  352. font-weight: 600;
  353. margin-left: 35px;
  354. }
  355. .room-artist{
  356. font-size: 2em;
  357. color: white;
  358. margin-left: 35px;
  359. }
  360. #seeker-bar{
  361. background-color: black;
  362. width: 0;
  363. height: 5px;
  364. margin-left: 35px;
  365. background-color: rgb(16, 140, 146);
  366. }
  367. .privacy {
  368. margin: 0 auto;
  369. padding: 100px 0;
  370. height: 900px;
  371. text-align: center;
  372. }
  373. .terms {
  374. margin: 0 auto;
  375. padding: 100px 0;
  376. height: 900px;
  377. text-align: center;
  378. }
  379. #song-input{
  380. -webkit-appearance: none;
  381. -moz-appearance: none;
  382. appearance: none;
  383. outline: 0;
  384. border: 1px solid rgba(255, 255, 255, 0.4);
  385. background-color: rgba(255, 255, 255, 0.2);
  386. width: 304px;
  387. border-radius: 3px;
  388. padding: 10px 15px;
  389. margin: 1em auto 10px auto;
  390. display: block;
  391. text-align: center;
  392. font-size: 18px;
  393. color: white;
  394. -webkit-transition-duration: 0.25s;
  395. transition-duration: 0.25s;
  396. font-weight: 300;
  397. }
  398. #search-song{
  399. display: block;
  400. margin: 0 auto;
  401. }
  402. #song-results{
  403. margin: 0 auto;
  404. color: white;
  405. margin-top: 1em;
  406. font-size: 1.5em;
  407. width: 500px;
  408. text-align: center;
  409. }
  410. #song-results p{
  411. margin: 0;
  412. padding: 5px;
  413. }
  414. #song-results p:hover{
  415. background-color: cadetblue;
  416. cursor: pointer;
  417. }
  418. @media (max-width: 992px) {
  419. .station {
  420. background-color: red;
  421. }
  422. }