main.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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 {
  21. border-color: rgba(34,34,34,.05);
  22. background-color: rgba(255,255,255,.5);
  23. -webkit-transition: all .35s;
  24. -moz-transition: all .35s;
  25. transition: all .35s;
  26. min-height: 85px;
  27. }
  28. nav.navbar.shrink {
  29. min-height: 35px;
  30. }
  31. nav.shrink .navbar-brand {
  32. font-size: 25px;
  33. }
  34. nav a {
  35. margin: 20px 5px !important;
  36. margin-bottom: 20px !important;
  37. font-size: 18px !important;
  38. }
  39. nav.shrink a {
  40. margin: 10px 5px !important;
  41. font-size: 16px !important;
  42. }
  43. .navbar-default .navbar-header .navbar-brand {
  44. background-image:url(../img/ribbon.svg) no-repeat;
  45. }
  46. .navbar-default .navbar-header .navbar-brand:hover,
  47. .navbar-default .navbar-header .navbar-brand:focus {}
  48. .navbar-default .nav > li>a,
  49. .navbar-default .nav>li>a:focus {
  50. font-size: 13px;
  51. font-weight: 700;
  52. color: #222;
  53. }
  54. .navbar-default .nav > li>a:hover,
  55. .navbar-default .nav>li>a:focus:hover {
  56. }
  57. .navbar-default .nav > li.active>a,
  58. .navbar-default .nav>li.active>a:focus {
  59. background-color: transparent;
  60. }
  61. .navbar-default .nav > li.active>a:hover,
  62. .navbar-default .nav>li.active>a:focus:hover {
  63. background-color: transparent;
  64. }
  65. .navbar .navbar-nav > li > a.btn {
  66. border-radius: 20px;
  67. box-sizing: border-box;
  68. border-width: 2px;
  69. background-color: transparent;
  70. font-size: 16px;
  71. font-weight: 500;
  72. padding: 7px 18px;
  73. border-color: #66615B;
  74. color: #66615B;
  75. -webkit-transition: all 150ms linear;
  76. -moz-transition: all 150ms linear;
  77. -o-transition: all 150ms linear;
  78. -ms-transition: all 150ms linear;
  79. transition: all 150ms linear;
  80. }
  81. .btn:hover, .btn:focus, .btn:active, .btn.active, .open > .btn.dropdown-toggle,
  82. .navbar .navbar-nav > li > a.btn:hover,
  83. .navbar .navbar-nav > li > a.btn:focus,
  84. .navbar .navbar-nav > li > a.btn:active,
  85. .navbar .navbar-nav > li > a.btn.active, .open >
  86. .navbar .navbar-nav > li > a.btn.dropdown-toggle {
  87. background-color: #66615B;
  88. color: rgba(255, 255, 255, 0.7);
  89. border-color: #66615B;
  90. }
  91. /* =================================================
  92. =================== Header ========================
  93. ==================================================== */
  94. header {
  95. position: relative;
  96. width: 100%;
  97. min-height: auto;
  98. text-align: center;
  99. color: #000;
  100. background-image: url(../img/header.svg);
  101. background-position: center;
  102. -webkit-background-size: cover;
  103. -moz-background-size: cover;
  104. background-size: cover;
  105. -o-background-size: cover;
  106. }
  107. header .header-content {
  108. position: relative;
  109. width: 100%;
  110. padding: 100px 15px;
  111. text-align: center;
  112. }
  113. header .header-content .header-content-inner h1 {
  114. margin-top: 0;
  115. margin-bottom: 0;
  116. font-weight: 700;
  117. }
  118. header .header-content .header-content-inner hr {
  119. margin: 30px auto;
  120. }
  121. header .header-content .header-content-inner p {
  122. margin-bottom: 50px;
  123. font-size: 16px;
  124. font-weight: 300;
  125. color: rgba(255,255,255,.7);
  126. }
  127. @media(min-width:768px) {
  128. header {
  129. min-height: 100%;
  130. }
  131. header .header-content {
  132. position: absolute;
  133. top: 50%;
  134. padding: 0 50px;
  135. -webkit-transform: translateY(-50%);
  136. -ms-transform: translateY(-50%);
  137. transform: translateY(-50%);
  138. }
  139. header .header-content .header-content-inner {
  140. margin-right: auto;
  141. margin-left: auto;
  142. max-width: 1000px;
  143. }
  144. header .header-content .header-content-inner p {
  145. margin-right: auto;
  146. margin-left: auto;
  147. max-width: 80%;
  148. font-size: 18px;
  149. }
  150. }
  151. /* =================================================
  152. =================== Sections ======================
  153. ==================================================== */
  154. section {
  155. padding:50px 0;
  156. }
  157. #about {
  158. background-color: rgba(255,255,255,.2);
  159. }
  160. #details {
  161. background-color: rgba(255,255,255,.8);
  162. }
  163. #features {
  164. background-color: rgba(255,255,255,.4);
  165. }
  166. #account {
  167. background-color: rgba(255,255,255,.1);
  168. }
  169. #call {
  170. background-color: rgba(255,255,255,.8);
  171. }
  172. .icon-small {
  173. width:60px;
  174. }
  175. .blue-ribbon path {
  176. fill: rgba(0, 83, 255, 1);
  177. stroke: rgba(0,0,0,1);
  178. background-color: #000;
  179. }
  180. .red-ribbon path {
  181. fill: rgba(255, 60, 0, 1);
  182. stroke: rgba(0,0,0,1);
  183. }
  184. .yellow-ribbon path {
  185. fill: rgba(255, 251, 27, 1);
  186. stroke: rgba(0,0,0,1);
  187. }
  188. /* =================================================
  189. ===================== Footer ======================
  190. ==================================================== */
  191. footer {
  192. padding: 50px 0 80px;
  193. color:#777;
  194. }
  195. .bg-dark {
  196. color: #fff;
  197. background-color: #222;
  198. }
  199. footer p {
  200. color:#777;
  201. }