main.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /* =================================================
  2. =================== Global ========================
  3. ==================================================== */
  4. html,
  5. body {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. body {
  10. background:rgba(238, 238, 238, 1);
  11. }
  12. a {
  13. -webkit-transition: all .35s;
  14. -moz-transition: all .35s;
  15. transition: all .35s;
  16. }
  17. /* =================================================
  18. =================== Navbar ========================
  19. ==================================================== */
  20. .navbar-default .navbar-header .navbar-brand {
  21. background-image:url(../img/ribbon.svg) no-repeat;
  22. }
  23. /* =================================================
  24. =================== Header ========================
  25. ==================================================== */
  26. header {
  27. position: relative;
  28. width: 100%;
  29. min-height: auto;
  30. text-align: center;
  31. color: #000;
  32. background-image: url(../img/header.svg);
  33. background-position: center;
  34. -webkit-background-size: cover;
  35. -moz-background-size: cover;
  36. background-size: cover;
  37. -o-background-size: cover;
  38. }
  39. header .header-content {
  40. position: relative;
  41. width: 100%;
  42. padding: 100px 15px;
  43. text-align: center;
  44. }
  45. header .header-content .header-content-inner h1 {
  46. margin-top: 0;
  47. margin-bottom: 0;
  48. font-weight: 700;
  49. }
  50. header .header-content .header-content-inner hr {
  51. margin: 30px auto;
  52. }
  53. header .header-content .header-content-inner p {
  54. margin-bottom: 50px;
  55. font-size: 16px;
  56. font-weight: 300;
  57. color: rgba(255,255,255,.7);
  58. }
  59. @media(min-width:768px) {
  60. header {
  61. min-height: 100%;
  62. }
  63. header .header-content {
  64. position: absolute;
  65. top: 50%;
  66. padding: 0 50px;
  67. -webkit-transform: translateY(-50%);
  68. -ms-transform: translateY(-50%);
  69. transform: translateY(-50%);
  70. }
  71. header .header-content .header-content-inner {
  72. margin-right: auto;
  73. margin-left: auto;
  74. max-width: 1000px;
  75. }
  76. header .header-content .header-content-inner p {
  77. margin-right: auto;
  78. margin-left: auto;
  79. max-width: 80%;
  80. font-size: 18px;
  81. }
  82. }
  83. .skew:before {
  84. content: '';
  85. position: absolute;
  86. left: 0;
  87. top: 106px;
  88. width: 100%;
  89. height: 60px;
  90. background: #fff;
  91. -webkit-transform: skewY(-20deg);
  92. -moz-transform: skewY(-20deg);
  93. -ms-transform: skewY(-20deg);
  94. -o-transform: skewY(-20deg);
  95. transform: skewY(-20deg);
  96. -webkit-backface-visibility: hidden;
  97. }
  98. .skew {
  99. background:#fff;
  100. }
  101. /* =================================================
  102. =================== Sections ======================
  103. ==================================================== */
  104. section {
  105. padding:50px 0;
  106. }
  107. #partial {
  108. padding:150px 0;
  109. }
  110. #about {
  111. background-color: rgba(255,255,255,.2);
  112. }
  113. #details {
  114. background-color: rgba(255,255,255,.8);
  115. }
  116. #features {
  117. background-color: rgba(255,255,255,.4);
  118. }
  119. #account {
  120. background-color: rgba(255,255,255,.1);
  121. }
  122. #call {
  123. background-color: rgba(255,255,255,.8);
  124. }
  125. .icon-small {
  126. width:60px;
  127. }
  128. .blue-ribbon path {
  129. fill: rgba(0, 83, 255, 1);
  130. stroke: rgba(0,0,0,1);
  131. background-color: #000;
  132. }
  133. .red-ribbon path {
  134. fill: rgba(255, 60, 0, 1);
  135. stroke: rgba(0,0,0,1);
  136. }
  137. .yellow-ribbon path {
  138. fill: rgba(255, 251, 27, 1);
  139. stroke: rgba(0,0,0,1);
  140. }
  141. /* =================================================
  142. ===================== Footer ======================
  143. ==================================================== */
  144. footer {
  145. padding: 50px 0 80px;
  146. color:#777;
  147. }
  148. .bg-dark {
  149. color: #fff;
  150. background-color: #222;
  151. }
  152. footer p {
  153. color:#777;
  154. }