No Description

styles.css 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. body {
  2. font-family: 'Open Sans', sans-serif;
  3. background: #e4e7ec;
  4. }
  5. h1, h2, h3, h4, h5, h6 {
  6. font-family: 'Montserrat', sans-serif;
  7. font-weight: bold;
  8. }
  9. a {
  10. color: #000;
  11. }
  12. ul {
  13. margin-bottom: 0;
  14. }
  15. .list-inline > li {
  16. padding-left: 15px;
  17. padding-right: 15px;
  18. }
  19. .text-muted {
  20. color: #90939a;
  21. }
  22. .navbar {
  23. border: 0;
  24. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  25. }
  26. .navbar-header {
  27. float: left;
  28. padding-left: 15px;
  29. }
  30. .navbar-nav {
  31. float: left;
  32. margin: 0;
  33. }
  34. .navbar-nav > li {
  35. float: left;
  36. }
  37. .navbar-nav > li > a {
  38. padding: 15px;
  39. }
  40. .navbar-default {
  41. color: #fff;
  42. background: #fff;
  43. }
  44. .navbar-default .navbar-brand {
  45. color: #333;
  46. background-color: #ffe939;
  47. }
  48. .navbar-default .navbar-brand:hover {
  49. color: #ffe939;
  50. background-color: #333;
  51. }
  52. .navbar-brand {
  53. margin-left: -15px;
  54. transition: 0.25s all;
  55. }
  56. .panel {
  57. border-color: #cfd9D7;
  58. border-radius: 2px;
  59. box-shadow: 0 8px 17px rgba(0, 0, 0, .2);
  60. }
  61. .panel-default > .panel-heading {
  62. font-size: 85%;
  63. font-weight: bold;
  64. color: #444;
  65. text-transform: uppercase;
  66. background-color: #f6f6f6;
  67. border-color: #cfd9db;
  68. }
  69. .form-control {
  70. border-radius: 0;
  71. }
  72. .center-form {
  73. width: 330px;
  74. margin: 12% auto;
  75. }
  76. .signup-or-separator {
  77. position: relative;
  78. height: 34px;
  79. text-align: center;
  80. background: none;
  81. }
  82. .signup-or-separator hr {
  83. width: 90%;
  84. margin: -16px auto 10px auto;
  85. border-top: 1px solid #dce0e0;
  86. }
  87. .signup-or-separator .text {
  88. display: inline-block;
  89. padding: 8px;
  90. margin: 0;
  91. background-color: #fff;
  92. }
  93. .has-feedback .form-control-feedback {
  94. top: 0;
  95. left: 0;
  96. width: 46px;
  97. height: 46px;
  98. line-height: 46px;
  99. color: #555;
  100. }
  101. .password-strength-indicator {
  102. position: absolute;
  103. top: 10px;
  104. right: 0;
  105. width: 5px;
  106. padding: 0 15px;
  107. }
  108. .password-strength-indicator span {
  109. display: block;
  110. width: 5px;
  111. height: 5px;
  112. margin-bottom: 2px;
  113. background: #ebeef1;
  114. border-radius: 5px;
  115. }
  116. [class^='ion-'] {
  117. font-size: 1.2em;
  118. }
  119. .has-feedback .form-control {
  120. padding-left: 42.5px;
  121. }
  122. .alert-material {
  123. position: fixed;
  124. right: 12px;
  125. bottom: 12px;
  126. z-index: 1;
  127. display: inline-block;
  128. min-height: 48px;
  129. padding: 13px 24px 12px;
  130. font-family: 'Roboto', sans-serif;
  131. color: #f1f1f1;
  132. cursor: default;
  133. background: #323232;
  134. border-radius: 2px;
  135. outline: none;
  136. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  137. }
  138. .profile-picture {
  139. height: 100px;
  140. display: block;
  141. }
  142. .btn {
  143. font-weight: bold;
  144. border-radius: 2px;
  145. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  146. }
  147. .btn-primary {
  148. background-color: #4285f4;
  149. }
  150. .btn-primary:hover {
  151. background-color: #3367d6;
  152. }
  153. .btn-success {
  154. background-color: #0f9d58;
  155. }
  156. .btn-success:hover {
  157. background-color: #196c4a;
  158. }
  159. .btn-danger {
  160. background-color: #db4437;
  161. }
  162. .btn-danger:hover {
  163. background-color: #b04c3b;
  164. }
  165. .btn-group-vertical .btn {
  166. margin-bottom: 10px;
  167. }
  168. .btn-group-vertical > .btn:first-child:not(:last-child) {
  169. border-radius: 2px;
  170. }
  171. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  172. border-radius: 2px;
  173. }
  174. .btn-group-vertical > .btn:last-child:not(:first-child) {
  175. border-radius: 2px;
  176. }
  177. .btn-lg {
  178. font-size: 14px;
  179. }
  180. .btn [class^='ion-'] {
  181. margin-right: 5px;
  182. }
  183. .btn .fa {
  184. margin-right: 5px;
  185. }
  186. /*********************
  187. * Social Buttons
  188. *********************/
  189. .btn-google-plus {
  190. color: #fff;
  191. background-color: #dd4b39;
  192. border: 1px solid #d54331;
  193. }
  194. .btn-google-plus:hover,
  195. .btn-google-plus:focus {
  196. color: #fff;
  197. background-color: #cb3927;
  198. }
  199. .btn-facebook {
  200. color: #fff;
  201. background-color: #3b5998;
  202. border: 1px solid #335190;
  203. }
  204. .btn-facebook:hover,
  205. .btn-facebook:focus {
  206. color: #fff;
  207. background-color: #294786;
  208. }
  209. .btn-linkedin {
  210. color: #fff;
  211. background-color: #007bb6;
  212. border: 1px solid #0073ae;
  213. }
  214. .btn-linkedin:hover,
  215. .btn-linkedin:focus {
  216. color: #fff;
  217. background-color: #0069a4;
  218. }
  219. .btn-twitter {
  220. color: #fff;
  221. background-color: #00aced;
  222. border: 1px solid #009fdb;
  223. }
  224. .btn-twitter:hover,
  225. .btn-twitter:focus {
  226. color: #fff;
  227. background-color: #0090c7;
  228. }
  229. .btn-foursquare {
  230. color: #fff;
  231. background-color: #f94877;
  232. border: 1px solid #f8215a;
  233. }
  234. .btn-foursquare:hover,
  235. .btn-foursquare:focus {
  236. color: #fff;
  237. background-color: #f71752;
  238. }
  239. .btn-github {
  240. color: #fff;
  241. background-color: #444;
  242. border: 1px solid #3b3b3b;
  243. }
  244. .btn-github:hover,
  245. .btn-github:focus {
  246. color: #fff;
  247. background-color: #303030;
  248. }
  249. .btn-instagram {
  250. color: #fff;
  251. background-color: #3f729b;
  252. }
  253. .btn-instagram:hover,
  254. .btn-instagram:focus {
  255. color: #fff;
  256. background-color: #305777;
  257. }
  258. .btn-yahoo {
  259. color: #fff;
  260. background-color: #720e9e;
  261. }
  262. .btn-yahoo:hover,
  263. .btn-yahoo:focus {
  264. color: #fff;
  265. background-color: #600e85;
  266. }
  267. .btn-live {
  268. color: #fff;
  269. background-color: #2672ec;
  270. }
  271. .btn-live:hover,
  272. .btn-live:focus {
  273. color: #fff;
  274. background-color: #125acd;
  275. }
  276. .btn-twitch {
  277. color: #fff;
  278. background-color: #6441a5;
  279. }
  280. .btn-twitch:hover,
  281. .btn-twitch:focus {
  282. color: #fff;
  283. background-color: #7550ba;
  284. }
  285. .btn-bitbucket {
  286. color: #fff;
  287. background-color: #10375e;
  288. }
  289. .btn-bitbucket:hover,
  290. .btn-bitbucket:focus {
  291. color: #fff;
  292. background-color: #0d2c4a;
  293. }
  294. /*********************
  295. * Animations
  296. *********************/
  297. .fadeZoom.ng-enter {
  298. -webkit-animation-duration: 0.6s, 0.2s;
  299. -moz-animation-duration: 0.2s, 0.2s;
  300. -ms-animation-duration: 0.2s, 0.2s;
  301. animation-duration: 0.2, 0.2s;
  302. -webkit-animation-name: fadeIn, zoomIn;
  303. -moz-animation-name: fadeIn, zoomIn;
  304. -ms-animation-name: fadeIn, zoomIn;
  305. animation-name: fadeIn, zoomIn;
  306. }
  307. .fadeZoomFadeDown.ng-enter {
  308. -webkit-animation-duration: 0.2s, 0.2s;
  309. -moz-animation-duration: 0.2s, 0.2s;
  310. -ms-animation-duration: 0.2s, 0.2s;
  311. animation-duration: 0.2s, 0.2s;
  312. -webkit-animation-name: fadeIn, zoomIn;
  313. -moz-animation-name: fadeIn, zoomIn;
  314. -ms-animation-name: fadeIn, zoomIn;
  315. animation-name: fadeIn, zoomIn;
  316. }
  317. .fadeZoomFadeDown.ng-leave {
  318. -webkit-animation: fadeOutDown 0.2s;
  319. -moz-animation: fadeOutDown 0.2s;
  320. -ms-animation: fadeOutDown 0.2s;
  321. animation: fadeOutDown 0.2s;
  322. }
  323. @-webkit-keyframes zoomIn {
  324. 0% {
  325. opacity: 0;
  326. -webkit-transform: scale3d(0.8, 0.8, 0.8);
  327. -moz-transform: scale3d(0.8, 0.8, 0.8);
  328. -ms-transform: scale3d(0.8, 0.8, 0.8);
  329. transform: scale3d(0.8, 0.8, 0.8);
  330. }
  331. 50% {
  332. opacity: 1;
  333. }
  334. }
  335. @keyframes zoomIn {
  336. 0% {
  337. opacity: 0;
  338. -webkit-transform: scale3d(0.8, 0.8, 0.8);
  339. -moz-transform: scale3d(0.8, 0.8, 0.8);
  340. -ms-transform: scale3d(0.8, 0.8, 0.8);
  341. transform: scale3d(0.8, 0.8, 0.8);
  342. }
  343. 50% {
  344. opacity: 1;
  345. }
  346. }