index.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. html,
  2. body {
  3. height: 100%;
  4. width: 100%;
  5. }
  6. body {
  7. -webkit-font-smoothing: antialiased;
  8. -moz-osx-font-smoothing: grayscale;
  9. font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  10. font-weight: 400;
  11. }
  12. a {
  13. -webkit-transition: all 0.35s;
  14. -moz-transition: all 0.35s;
  15. transition: all 0.35s;
  16. color: #fdcc52;
  17. }
  18. a:hover,
  19. a:focus {
  20. color: #fcbd20;
  21. }
  22. hr {
  23. max-width: 100px;
  24. margin: 25px auto 0;
  25. border-width: 1px;
  26. border-color: rgba(34, 34, 34, 0.1);
  27. }
  28. hr.light {
  29. border-color: white;
  30. }
  31. h1,
  32. h2,
  33. h3,
  34. h4,
  35. h5,
  36. h6 {
  37. font-weight: 200;
  38. letter-spacing: 1px;
  39. }
  40. p {
  41. font-size: 16px;
  42. line-height: 1.5;
  43. margin-bottom: 20px;
  44. }
  45. .navbar-default {
  46. background-color: white;
  47. border-color: rgba(34, 34, 34, 0.05);
  48. -webkit-transition: all 0.35s;
  49. -moz-transition: all 0.35s;
  50. transition: all 0.35s;
  51. font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
  52. font-weight: 200;
  53. letter-spacing: 1px;
  54. }
  55. .navbar-default .navbar-header .navbar-brand {
  56. font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
  57. font-weight: 200;
  58. letter-spacing: 1px;
  59. color: #fdcc52;
  60. }
  61. .navbar-default .navbar-header .navbar-brand:hover,
  62. .navbar-default .navbar-header .navbar-brand:focus {
  63. color: #fcbd20;
  64. }
  65. .navbar-default .navbar-header .navbar-toggle {
  66. font-size: 12px;
  67. color: #222222;
  68. padding: 8px 10px;
  69. }
  70. .navbar-default .nav > li > a {
  71. text-transform: uppercase;
  72. letter-spacing: 2px;
  73. font-size: 14px;
  74. }
  75. .navbar-default .nav > li > a,
  76. .navbar-default .nav > li > a:focus {
  77. color: #222222;
  78. }
  79. .navbar-default .nav > li > a:hover,
  80. .navbar-default .nav > li > a:focus:hover {
  81. color: #fdcc52;
  82. }
  83. .navbar-default .nav > li.active > a,
  84. .navbar-default .nav > li.active > a:focus {
  85. color: #fdcc52 !important;
  86. background-color: transparent;
  87. }
  88. .navbar-default .nav > li.active > a:hover,
  89. .navbar-default .nav > li.active > a:focus:hover {
  90. background-color: transparent;
  91. }
  92. .navbar-default .navbar-header .navbar-brand {
  93. padding-top:3px;
  94. }
  95. @media (min-width: 768px) {
  96. .navbar-default {
  97. background-color: transparent;
  98. border-color: transparent;
  99. }
  100. .navbar-default .navbar-header .navbar-brand {
  101. color: rgba(255, 255, 255, 0.7);
  102. }
  103. .navbar-default .navbar-header .navbar-brand:hover,
  104. .navbar-default .navbar-header .navbar-brand:focus {
  105. color: white;
  106. }
  107. .navbar-default .nav > li > a,
  108. .navbar-default .nav > li > a:focus {
  109. color: rgba(255, 255, 255, 0.7);
  110. }
  111. .navbar-default .nav > li > a:hover,
  112. .navbar-default .nav > li > a:focus:hover {
  113. color: white;
  114. }
  115. .navbar-default.affix {
  116. background-color: white;
  117. border-color: rgba(34, 34, 34, 0.1);
  118. }
  119. .navbar-default.affix .navbar-header .navbar-brand {
  120. color: #222222;
  121. }
  122. .navbar-default.affix .navbar-header .navbar-brand:hover,
  123. .navbar-default.affix .navbar-header .navbar-brand:focus {
  124. color: #fdcc52;
  125. }
  126. .navbar-default.affix .nav > li > a,
  127. .navbar-default.affix .nav > li > a:focus {
  128. color: #222222;
  129. }
  130. .navbar-default.affix .nav > li > a:hover,
  131. .navbar-default.affix .nav > li > a:focus:hover {
  132. color: #fdcc52;
  133. }
  134. }
  135. header {
  136. position: relative;
  137. width: 100%;
  138. min-height: auto;
  139. overflow-y: hidden;
  140. background: url("../img/bg-pattern.png"), #7b4397;
  141. /* fallback for old browsers */
  142. background: url("../img/bg-pattern.png"), -webkit-linear-gradient(to left, #328944, #247cdc);
  143. /* Chrome 10-25, Safari 5.1-6 */
  144. background: url(../img/bg-pattern.png), linear-gradient(to left, #328944, #247cdc);
  145. /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  146. color: white;
  147. }
  148. header .header-content {
  149. text-align: center;
  150. padding: 150px 0 50px;
  151. position: relative;
  152. }
  153. header .header-content .header-content-inner {
  154. position: relative;
  155. margin: 0 auto;
  156. }
  157. header .header-content .header-content-inner h1 {
  158. margin-top: 0;
  159. margin-bottom: 30px;
  160. font-size: 80px;
  161. }
  162. header .header-content .header-content-inner .list-badges {
  163. margin-bottom: 25px;
  164. }
  165. header .header-content .header-content-inner .list-badges img {
  166. height: 50px;
  167. margin-bottom: 25px;
  168. }
  169. header .device-container {
  170. max-width: 300px;
  171. margin: 0 auto 100px;
  172. }
  173. header .device-container .screen img {
  174. border-radius: 3px;
  175. }
  176. @media (min-width: 768px) {
  177. header {
  178. min-height: 100%;
  179. }
  180. header .header-content {
  181. text-align: center;
  182. padding: 0;
  183. height: 100vh;
  184. }
  185. header .header-content .header-content-inner {
  186. width:100%;
  187. margin: 0;
  188. position: absolute;
  189. top: 50%;
  190. transform: translateY(-50%);
  191. }
  192. header .header-content .header-content-inner h1 {
  193. font-size: 35px;
  194. }
  195. header .device-container {
  196. max-width: none;
  197. max-height: calc(0vh);
  198. margin: 100px auto 0;
  199. }
  200. }
  201. @media (min-width: 992px) {
  202. header .header-content .header-content-inner h1 {
  203. font-size: 80px;
  204. }
  205. }
  206. @media (max-width: 767px) {
  207. header .header-content .header-content-inner h1 {
  208. font-size: 50px;
  209. }
  210. }
  211. section {
  212. padding: 100px 0;
  213. }
  214. section h2 {
  215. font-size: 50px;
  216. }
  217. section.download {
  218. padding: 150px 0;
  219. position: relative;
  220. }
  221. section.download h2 {
  222. margin-top: 0;
  223. font-size: 50px;
  224. }
  225. section.download .badges .badge-link {
  226. display: block;
  227. margin-bottom: 25px;
  228. }
  229. section.download .badges .badge-link:last-child {
  230. margin-bottom: 0;
  231. }
  232. section.download .badges .badge-link img {
  233. height: 60px;
  234. }
  235. @media (min-width: 768px) {
  236. section.download .badges .badge-link {
  237. display: inline-block;
  238. margin-bottom: 0;
  239. }
  240. }
  241. @media (min-width: 768px) {
  242. section.download h2 {
  243. font-size: 70px;
  244. }
  245. }
  246. section.features .section-heading {
  247. margin-bottom: 100px;
  248. }
  249. section.features .section-heading h2 {
  250. margin-top: 0;
  251. }
  252. section.features .section-heading p {
  253. margin-bottom: 0;
  254. }
  255. section.features .device-container,
  256. section.features .feature-item {
  257. max-width: 300px;
  258. margin: 0 auto;
  259. height:215px;
  260. }
  261. section.features .device-container {
  262. margin-bottom: 100px;
  263. }
  264. @media (min-width: 992px) {
  265. section.features .device-container {
  266. margin-bottom: 0;
  267. }
  268. }
  269. section.features .feature-item {
  270. text-align: center;
  271. margin-bottom: 80px;
  272. }
  273. section.features .feature-item h3 {
  274. font-size: 24px;
  275. }
  276. section.features .feature-item i {
  277. font-size: 60px;
  278. background: -webkit-linear-gradient(to left,#328944, #247cdc);
  279. background: linear-gradient(to left, #328944, #247cdc);
  280. -webkit-background-clip: text;
  281. -webkit-text-fill-color: transparent;
  282. }
  283. @media (min-width: 992px) {
  284. section.features .device-container,
  285. section.features .feature-item {
  286. max-width: none;
  287. }
  288. }
  289. section.cta {
  290. position: relative;
  291. -webkit-background-size: cover;
  292. -moz-background-size: cover;
  293. background-size: cover;
  294. -o-background-size: cover;
  295. background-position: center;
  296. background-image: url('../img/bg-middle.jpg');
  297. padding: 250px 0;
  298. }
  299. section.cta .cta-content {
  300. position: relative;
  301. z-index: 1;
  302. }
  303. section.cta .cta-content h2 {
  304. margin-top: 0;
  305. margin-bottom: 25px;
  306. color: white;
  307. max-width: 450px;
  308. font-size: 50px;
  309. }
  310. @media (min-width: 768px) {
  311. section.cta .cta-content h2 {
  312. font-size: 70px;
  313. }
  314. }
  315. section.cta .overlay {
  316. height: 100%;
  317. width: 100%;
  318. background-color: rgba(0, 0, 0, 0.5);
  319. position: absolute;
  320. top: 0;
  321. left: 0;
  322. }
  323. section.contact {
  324. text-align: center;
  325. }
  326. section.contact h2 {
  327. margin-top: 0;
  328. margin-bottom: 25px;
  329. }
  330. section.contact h2 i {
  331. color: #dd4b39;
  332. }
  333. section.contact ul.list-social {
  334. margin-bottom: 0;
  335. }
  336. section.contact ul.list-social li a {
  337. display: block;
  338. height: 80px;
  339. width: 80px;
  340. line-height: 80px;
  341. font-size: 40px;
  342. border-radius: 100%;
  343. color: white;
  344. }
  345. section.contact ul.list-social li.social-github a {
  346. background-color: #444;
  347. }
  348. section.contact ul.list-social li.social-github a:hover {
  349. background-color: #111;
  350. }
  351. section.contact ul.list-social li.social-qq a {
  352. background-color: #1da1f2;
  353. }
  354. section.contact ul.list-social li.social-qq a:hover {
  355. background-color: #0d95e8;
  356. }
  357. section.contact ul.list-social li.social-weibo a {
  358. background-color: #dd4b39;
  359. }
  360. section.contact ul.list-social li.social-weibo a:hover {
  361. background-color: #d73925;
  362. }
  363. footer {
  364. background-color: #222222;
  365. padding: 25px 0;
  366. color: rgba(255, 255, 255, 0.3);
  367. text-align: center;
  368. }
  369. footer p {
  370. font-size: 12px;
  371. margin: 0;
  372. }
  373. footer ul {
  374. margin-bottom: 0;
  375. }
  376. footer ul li a {
  377. font-size: 12px;
  378. color: rgba(255, 255, 255, 0.3);
  379. }
  380. footer ul li a:hover,
  381. footer ul li a:focus,
  382. footer ul li a:active,
  383. footer ul li a.active {
  384. text-decoration: none;
  385. }
  386. .bg-primary {
  387. background: #fdcc52;
  388. background: -webkit-linear-gradient(#fdcc52, #fdc539);
  389. background: linear-gradient(#fdcc52, #fdc539);
  390. }
  391. .text-primary {
  392. color: #fdcc52;
  393. }
  394. .no-gutter > [class*='col-'] {
  395. padding-right: 0;
  396. padding-left: 0;
  397. }
  398. .btn-outline {
  399. color: white;
  400. border-color: white;
  401. border: 1px solid;
  402. }
  403. .btn-outline:hover,
  404. .btn-outline:focus,
  405. .btn-outline:active,
  406. .btn-outline.active {
  407. color: white;
  408. background-color: #fdcc52;
  409. border-color: #fdcc52;
  410. }
  411. .btn {
  412. text-transform: uppercase;
  413. letter-spacing: 2px;
  414. border-radius: 300px;
  415. }
  416. .btn-xl {
  417. margin-top:20px;
  418. padding: 10px 45px;
  419. font-size: 14px;
  420. }
  421. body {
  422. webkit-tap-highlight-color: #222222;
  423. }