app.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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. .landing {
  35. background: #50a3a2;
  36. background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  37. background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  38. position: absolute;
  39. /*top: 20%;*/
  40. left: 0;
  41. width: 100%;
  42. height: 100%; /*400px*/
  43. /*margin-top: -200px;*/
  44. overflow: hidden;
  45. }
  46. .container {
  47. max-width: 600px;
  48. margin: 0 auto;
  49. padding: 80px 0;
  50. height: 400px;
  51. text-align: center;
  52. }
  53. .container h1 {
  54. font-size: 40px;
  55. color: white;
  56. -webkit-transition-duration: 1s;
  57. transition-duration: 1s;
  58. -webkit-transition-timing-function: ease-in-put;
  59. transition-timing-function: ease-in-put;
  60. font-weight: 200;
  61. }
  62. .container p {
  63. font-size: 10px;
  64. color: white;
  65. -webkit-transition-duration: 1s;
  66. transition-duration: 1s;
  67. -webkit-transition-timing-function: ease-in-put;
  68. transition-timing-function: ease-in-put;
  69. font-weight: 200;
  70. }
  71. form {
  72. padding: 20px 0;
  73. position: relative;
  74. z-index: 2;
  75. }
  76. form input {
  77. -webkit-appearance: none;
  78. -moz-appearance: none;
  79. appearance: none;
  80. outline: 0;
  81. border: 1px solid rgba(255, 255, 255, 0.4);
  82. background-color: rgba(255, 255, 255, 0.2);
  83. width: 250px;
  84. border-radius: 3px;
  85. padding: 10px 15px;
  86. margin: 0 auto 10px auto;
  87. display: block;
  88. text-align: center;
  89. font-size: 18px;
  90. color: white;
  91. -webkit-transition-duration: 0.25s;
  92. transition-duration: 0.25s;
  93. font-weight: 300;
  94. }
  95. form input:hover {
  96. background-color: rgba(255, 255, 255, 0.4);
  97. }
  98. form input:focus {
  99. /*opacity: 0.4;*/
  100. width: 300px !important;
  101. color: white;
  102. }
  103. form button {
  104. -webkit-appearance: none;
  105. -moz-appearance: none;
  106. appearance: none;
  107. outline: 0;
  108. background-color: white;
  109. border: 0;
  110. padding: 10px 15px;
  111. color: #53e3a6;
  112. border-radius: 3px;
  113. width: 250px;
  114. cursor: pointer;
  115. font-size: 18px;
  116. -webkit-transition-duration: 0.25s;
  117. transition-duration: 0.25s;
  118. }
  119. ::-webkit-input-placeholder {
  120. color: white;
  121. }
  122. ::-moz-placeholder { /* Firefox 19+ */
  123. color: white;
  124. }
  125. :-ms-input-placeholder {
  126. color: white;
  127. }
  128. form button:hover {
  129. background-color: #f5f7f9;
  130. }
  131. .bg-bubbles {
  132. top: 0;
  133. left: 0;
  134. width: 100%;
  135. height: 100%;
  136. z-index: 1;
  137. }
  138. .bg-bubbles li {
  139. position: absolute;
  140. list-style: none;
  141. display: block;
  142. width: 40px;
  143. height: 40px;
  144. border-radius: 100px;
  145. background-color: rgba(255, 255, 255, 0.15);
  146. bottom: -160px;
  147. -webkit-animation: square 25s infinite;
  148. animation: square 25s infinite;
  149. -webkit-transition-timing-function: linear;
  150. transition-timing-function: linear;
  151. }
  152. .bg-bubbles li:nth-child(1) {
  153. left: 10%;
  154. }
  155. .bg-bubbles li:nth-child(2) {
  156. left: 20%;
  157. width: 80px;
  158. height: 80px;
  159. -webkit-animation-delay: 2s;
  160. animation-delay: 2s;
  161. -webkit-animation-duration: 17s;
  162. animation-duration: 17s;
  163. }
  164. .bg-bubbles li:nth-child(3) {
  165. left: 25%;
  166. -webkit-animation-delay: 4s;
  167. animation-delay: 4s;
  168. }
  169. .bg-bubbles li:nth-child(4) {
  170. left: 40%;
  171. width: 60px;
  172. height: 60px;
  173. -webkit-animation-duration: 22s;
  174. animation-duration: 22s;
  175. background-color: rgba(255, 255, 255, 0.25);
  176. }
  177. .bg-bubbles li:nth-child(5) {
  178. left: 70%;
  179. }
  180. .bg-bubbles li:nth-child(6) {
  181. left: 80%;
  182. width: 120px;
  183. height: 120px;
  184. -webkit-animation-delay: 3s;
  185. animation-delay: 3s;
  186. background-color: rgba(255, 255, 255, 0.2);
  187. }
  188. .bg-bubbles li:nth-child(7) {
  189. left: 32%;
  190. width: 160px;
  191. height: 160px;
  192. -webkit-animation-delay: 7s;
  193. animation-delay: 7s;
  194. }
  195. .bg-bubbles li:nth-child(8) {
  196. left: 55%;
  197. width: 20px;
  198. height: 20px;
  199. -webkit-animation-delay: 15s;
  200. animation-delay: 15s;
  201. -webkit-animation-duration: 40s;
  202. animation-duration: 40s;
  203. }
  204. .bg-bubbles li:nth-child(9) {
  205. left: 25%;
  206. width: 10px;
  207. height: 10px;
  208. -webkit-animation-delay: 2s;
  209. animation-delay: 2s;
  210. -webkit-animation-duration: 40s;
  211. animation-duration: 40s;
  212. background-color: rgba(255, 255, 255, 0.3);
  213. }
  214. .bg-bubbles li:nth-child(10) {
  215. left: 90%;
  216. width: 160px;
  217. height: 160px;
  218. -webkit-animation-delay: 11s;
  219. animation-delay: 11s;
  220. }
  221. @-webkit-keyframes square {
  222. 0% {
  223. -webkit-transform: translateY(0);
  224. transform: translateY(0);
  225. }
  226. 100% {
  227. -webkit-transform: translateY(-700px) rotate(600deg);
  228. transform: translateY(-700px) rotate(600deg);
  229. }
  230. }
  231. @keyframes square {
  232. 0% {
  233. -webkit-transform: translateY(0);
  234. transform: translateY(0);
  235. }
  236. 100% {
  237. -webkit-transform: translateY(-700px) rotate(600deg);
  238. transform: translateY(-700px) rotate(600deg);
  239. }
  240. }
  241. .fa-facebook{
  242. margin-top: 3px;
  243. }
  244. #facebook-login{
  245. background-color: #3b5998;
  246. }
  247. .fa-github{
  248. margin-top: 3px;
  249. }
  250. #github-login{
  251. background-color: #999;
  252. }
  253. .btn-social{
  254. -webkit-appearance: none;
  255. -moz-appearance: none;
  256. appearance: none;
  257. outline: 0;
  258. border: 0;
  259. padding: 10px 15px;
  260. border-radius: 3px;
  261. width: 250px;
  262. cursor: pointer;
  263. font-size: 18px;
  264. color: #fff;
  265. }
  266. footer {
  267. text-align: center;
  268. position:absolute;
  269. bottom:0;
  270. width:100%;
  271. height:60px; /* Height of the footer */
  272. padding: 0;
  273. color: white;
  274. }
  275. footer a{
  276. color: white;
  277. }
  278. footer a:hover{
  279. color: white;
  280. }
  281. .button {
  282. -webkit-appearance: none;
  283. -moz-appearance: none;
  284. appearance: none;
  285. outline: 0;
  286. background-color: white;
  287. border: 0;
  288. padding: 10px 15px;
  289. color: #53e3a6;
  290. border-radius: 3px;
  291. width: 250px;
  292. cursor: pointer;
  293. font-size: 18px;
  294. -webkit-transition-duration: 0.25s;
  295. transition-duration: 0.25s;
  296. }
  297. .button:hover {
  298. background-color: #f5f7f9;
  299. }
  300. #dashboard #name-container{
  301. background-color: rgba(255,255,255,0.5);
  302. width: 300px;
  303. height: 60px;
  304. }
  305. #dashboard h1{
  306. margin-left: 20px;
  307. line-height: 60px;
  308. color: white;
  309. font-weight: 600;
  310. }
  311. #dashboard .logout{
  312. margin-left: 20px;
  313. cursor: pointer;
  314. }
  315. #dashboard .station{
  316. }
  317. #dashboard .station:hover{
  318. background-color: rgba(102,205,170,0.7);
  319. }
  320. #dashboard .station .station-name{
  321. }
  322. #dashboard .station .song-info{
  323. text-align: center;
  324. }
  325. #dashboard .station .song-title{
  326. font-size: 2.5em;
  327. }
  328. #dashboard .station .song-artist{
  329. font-size: 2em;
  330. }
  331. #dashboard .station .button-tunein{
  332. outline: 0;
  333. border: 0;
  334. border: 2px solid white;
  335. padding: 10px 15px;
  336. border-radius: 3px;
  337. width: 250px;
  338. cursor: pointer;
  339. font-size: 18px;
  340. color: #fff;
  341. background-color: transparent;
  342. display: block;
  343. margin: 0 auto;
  344. }
  345. #dashboard .station .controls{
  346. font-size: 2em;
  347. display: block;
  348. text-align: center;
  349. }