Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. /* ==== Google font ==== */
  2. @import url(http://fonts.googleapis.com/css?family=Roboto:400,300,700,900);
  3. @import url('http://fonts.googleapis.com/css?family=Ek+Mukta:400,600,700');
  4.  
  5. body {
  6. width: 100%;
  7. height: 100%;
  8. font-family: 'Ek Mukta', sans-serif;
  9. font-weight: 300;
  10. color: #666;
  11. background-color: #fff;
  12. font-size: 16px;
  13. line-height: 1.6em;
  14. font-weight: 400;
  15. }
  16.  
  17. /* --- logo --- */
  18. .site-logo {
  19. margin-top:40px;
  20. }
  21.  
  22. .site-logo a.brand {
  23. color: #111;
  24. text-transform: uppercase;
  25. font-size: 30px;
  26. font-family: 'Roboto', sans-serif;
  27. font-weight: 900;
  28.  
  29. }
  30. .site-logo a.brand:hover {
  31. text-decoration:none;
  32. }
  33.  
  34. /* ------- Navigation ------------ */
  35.  
  36. .navbar {
  37. margin-bottom: 0;
  38. }
  39.  
  40. .navbar-brand {
  41. font-weight: 700;
  42. }
  43.  
  44.  
  45. .navbar-brand:focus {
  46. outline: 0;
  47. }
  48.  
  49. .nav.navbar-nav {
  50. padding:30px;
  51. }
  52.  
  53. .navbar-fixed-top ul.nav li a {
  54. font-size: 14px;
  55. letter-spacing: 3px;
  56. color: #444;
  57. text-transform: uppercase;
  58. font-weight: 700;
  59. }
  60.  
  61. .navbar-fixed-top.top-nav-collapse ul.nav li a {
  62. -webkit-transition: all .2s ease-in-out;
  63. -moz-transition: all .2s ease-in-out;
  64. transition: all .2s ease-in-out;
  65. color: #fff;
  66. }
  67.  
  68. .navbar-fixed-top ul.nav ul.dropdown-menu {
  69. border-radius: 0;
  70. margin-top: 21px;
  71. border-top: none;
  72. }
  73.  
  74. .navbar-fixed-top ul.nav li a:hover ul.dropdown-menu {
  75. -webkit-transition: all .2s ease-in-out;
  76. -moz-transition: all .2s ease-in-out;
  77. transition: all .2s ease-in-out;
  78. }
  79.  
  80. .navbar-fixed-top ul.nav ul.dropdown-menu li:last-child{
  81. border-bottom: none;
  82. }
  83.  
  84. .navbar-fixed-top ul.nav ul.dropdown-menu li a {
  85. padding: 10px 20px;
  86. }
  87.  
  88. .navbar-fixed-top.top-nav-collapse ul.nav ul.dropdown-menu li a {
  89. color: #666;
  90. }
  91.  
  92. .navbar-fixed-top .nav li a {
  93. -webkit-transition: background .3s ease-in-out;
  94. -moz-transition: background .3s ease-in-out;
  95. transition: background .3s ease-in-out;
  96. }
  97.  
  98. .navbar-fixed-top .nav li a:hover,
  99. .navbar-fixed-top .nav li a:focus,
  100. .navbar-fixed-top .nav li.active {
  101. outline: 0;
  102. background-color:#3BCDB8 ;
  103. color:#fff;
  104. }
  105.  
  106. .navbar-toggle {
  107. padding: 4px 6px;
  108. font-size: 18px;
  109. color: #000;
  110. }
  111.  
  112. .navbar-toggle:focus,
  113. .navbar-toggle:active {
  114. outline: 0;
  115. }
  116.  
  117. /* --- services --- */
  118. #services {
  119. text-align:center;
  120. background-color:#f9f9f9;
  121. }
  122.  
  123. /* --- works --- */
  124. #works {
  125. padding-top:60px;
  126. text-align:center;
  127. padding-bottom:30px;
  128. background-color:#fff;
  129. }
  130.  
  131. /* ===========================
  132. --- General sections
  133. ============================ */
  134. .home-section {
  135. padding-top: 40px;
  136. padding-bottom: 110px;
  137. display:block;
  138. position:relative;
  139. z-index:120;
  140. }
  141.  
  142.  
  143. .section-heading {
  144. margin-top:120px;
  145. margin-bottom:60px;
  146. }
  147.  
  148.  
  149.  
  150. .section-heading h2 {
  151. font-size: 40px;
  152. letter-spacing: -1px;
  153. text-transform: uppercase;
  154. margin-bottom: 10px;
  155. }
  156.  
  157. .section-heading p {
  158. font-weight: 300;
  159. font-size: 18px;
  160. line-height: 1.6em;
  161. }
  162.  
  163. .service-icon {
  164. margin-bottom:50px;
  165.  
  166. }
  167.  
  168. .service-icon:hover {
  169. color:#AD75FD;
  170.  
  171. }
  172.  
  173.  
  174. /* ===========================
  175. --- Footer
  176. ============================ */
  177.  
  178. footer {
  179. background-color: #FED2ED;
  180. }
  181.  
  182. footer {
  183. text-align: center;
  184. padding: 50px 0 ;
  185.  
  186. }
  187.  
  188. footer p {
  189. color: #fff;
  190. font-size: 14px;
  191. }
  192. footer a {
  193. color: #000;
  194. }
  195.  
  196. footer a:hover {
  197. color: #fff;
  198. text-decoration:none;
  199. }
  200.  
  201. footer a.scrollup {
  202. color: #fff;
  203. margin-bottom: 30px;
  204. }
  205. footer a.scrollup:focus {
  206. outline: 0;
  207. }
  208.  
  209.  
  210.  
  211.  
  212.  
  213. /* --- progress --- */
  214. .progress {
  215. height: 40px;
  216.  
  217. }
  218. .progress-bar {
  219. font-size: 14px;
  220. line-height: 40px;
  221. }
  222.  
  223. /* --- Map --- */
  224. .map{
  225. position:relative;
  226. padding-top:100px;
  227. margin-top:30px;
  228. }
  229.  
  230. .map iframe{
  231. width:100%;
  232. height:550px;
  233. border:none;
  234. }
  235.  
  236. .map-grid iframe{
  237. width:100%;
  238. height:400px;
  239. border:none;
  240. margin:0 0 -5px 0;
  241. padding:0;
  242. }
  243.  
  244. .contact-wrap {
  245. margin-top: 80px;
  246. margin-bottom:80px;
  247. }
  248.  
  249. .form-group label {
  250. color: #4E4E4E;
  251. font-size: 16px;
  252. font-weight: 300;
  253. border-radius:0;
  254. }
  255.  
  256. .form-group .form-control {
  257. padding: 7px 12px;
  258. border-color:#eee;
  259. box-shadow: none;
  260. border-radius:0;
  261. }
  262.  
  263. textarea#message{
  264. resize: none;
  265. padding: 10px;
  266. border-radius:0;
  267. }
  268.  
  269. .btn-primary {
  270. margin-top:20px;
  271. background-color:#fff;
  272. color:#000;
  273. border-radius:0;
  274. border-color:#eee;
  275. }
  276. .btn-primary:hover{
  277. -webkit-transition: background .3s ease-in-out;
  278. -moz-transition: background .3s ease-in-out;
  279. transition: background .3s ease-in-out;
  280. background-color:#D09A43;
  281. border-color:#fff;
  282. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement