scaffold_style.css 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /**
  2. * Template Name: Scaffold - v4.2.0
  3. * Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
  4. * Author: BootstrapMade.com
  5. * License: https://bootstrapmade.com/license/
  6. */
  7. /*--------------------------------------------------------------
  8. # General
  9. --------------------------------------------------------------*/
  10. body {
  11. font-family: "Open Sans", sans-serif;
  12. color: #444444;
  13. }
  14. a {
  15. color: #009cea;
  16. text-decoration: none;
  17. }
  18. a:hover {
  19. color: #1eb4ff;
  20. text-decoration: none;
  21. }
  22. h1,
  23. h2,
  24. h3,
  25. h4,
  26. h5,
  27. h6 {
  28. font-family: "Raleway", sans-serif;
  29. }
  30. /*--------------------------------------------------------------
  31. # Back to top button
  32. --------------------------------------------------------------*/
  33. .back-to-top {
  34. position: fixed;
  35. visibility: hidden;
  36. opacity: 0;
  37. right: 15px;
  38. bottom: 15px;
  39. z-index: 996;
  40. background: #009cea;
  41. width: 40px;
  42. height: 40px;
  43. border-radius: 4px;
  44. transition: all 0.4s;
  45. }
  46. .back-to-top i {
  47. font-size: 28px;
  48. color: #fff;
  49. line-height: 0;
  50. }
  51. .back-to-top:hover {
  52. background: #14b1ff;
  53. color: #fff;
  54. }
  55. .back-to-top.active {
  56. visibility: visible;
  57. opacity: 1;
  58. }
  59. /*--------------------------------------------------------------
  60. # Disable AOS delay on mobile
  61. --------------------------------------------------------------*/
  62. @media screen and (max-width: 768px) {
  63. [data-aos-delay] {
  64. transition-delay: 0 !important;
  65. }
  66. }
  67. /*--------------------------------------------------------------
  68. # Header
  69. --------------------------------------------------------------*/
  70. #header {
  71. height: 72px;
  72. transition: all 0.5s;
  73. z-index: 997;
  74. transition: all 0.5s;
  75. background: #fff;
  76. }
  77. #header.header-scrolled {
  78. box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  79. }
  80. #header .logo h1 {
  81. font-size: 28px;
  82. margin: 0;
  83. line-height: 0;
  84. font-weight: 600;
  85. letter-spacing: 1px;
  86. font-family: "Open Sans", sans-serif;
  87. }
  88. #header .logo h1 a,
  89. #header .logo h1 a:hover {
  90. color: #576971;
  91. text-decoration: none;
  92. }
  93. #header .logo img {
  94. padding: 0;
  95. margin: 0;
  96. max-height: 40px;
  97. }
  98. /*--------------------------------------------------------------
  99. # Header Social Links
  100. --------------------------------------------------------------*/
  101. .header-social-links {
  102. margin: 0 0 0 30px;
  103. }
  104. @media (max-width: 768px) {
  105. .header-social-links {
  106. margin: 0 15px 0 0;
  107. }
  108. }
  109. .header-social-links a {
  110. color: #7b909a;
  111. display: inline-block;
  112. line-height: 0px;
  113. transition: 0.3s;
  114. padding-left: 10px;
  115. }
  116. .header-social-links a:hover {
  117. color: #009cea;
  118. }
  119. /*--------------------------------------------------------------
  120. # Navigation Menu
  121. --------------------------------------------------------------*/
  122. /**
  123. * Desktop Navigation
  124. */
  125. .navbar {
  126. padding: 0;
  127. }
  128. .navbar ul {
  129. margin: 0;
  130. padding: 0;
  131. display: flex;
  132. list-style: none;
  133. align-items: center;
  134. }
  135. .navbar li {
  136. position: relative;
  137. }
  138. .navbar a {
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. padding: 10px 0 10px 30px;
  143. font-size: 15px;
  144. font-family: "Poppins", sans-serif;
  145. color: #7b909a;
  146. white-space: nowrap;
  147. transition: 0.3s;
  148. }
  149. .navbar a i {
  150. font-size: 12px;
  151. line-height: 0;
  152. margin-left: 5px;
  153. }
  154. .navbar a:hover,
  155. .navbar .active,
  156. .navbar li:hover > a {
  157. color: #009cea;
  158. }
  159. .navbar .dropdown ul {
  160. display: block;
  161. position: absolute;
  162. left: 14px;
  163. top: calc(100% + 30px);
  164. margin: 0;
  165. padding: 10px 0;
  166. z-index: 99;
  167. opacity: 0;
  168. visibility: hidden;
  169. background: #fff;
  170. box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  171. transition: 0.3s;
  172. }
  173. .navbar .dropdown ul li {
  174. min-width: 200px;
  175. }
  176. .navbar .dropdown ul a {
  177. padding: 10px 20px;
  178. font-size: 14px;
  179. color: #003651;
  180. }
  181. .navbar .dropdown ul a i {
  182. font-size: 12px;
  183. }
  184. .navbar .dropdown ul a:hover,
  185. .navbar .dropdown ul .active:hover,
  186. .navbar .dropdown ul li:hover > a {
  187. color: #009cea;
  188. }
  189. .navbar .dropdown:hover > ul {
  190. opacity: 1;
  191. top: 100%;
  192. visibility: visible;
  193. }
  194. .navbar .dropdown .dropdown ul {
  195. top: 0;
  196. left: calc(100% - 30px);
  197. visibility: hidden;
  198. }
  199. .navbar .dropdown .dropdown:hover > ul {
  200. opacity: 1;
  201. top: 0;
  202. left: 100%;
  203. visibility: visible;
  204. }
  205. @media (max-width: 1366px) {
  206. .navbar .dropdown .dropdown ul {
  207. left: -90%;
  208. }
  209. .navbar .dropdown .dropdown:hover > ul {
  210. left: -100%;
  211. }
  212. }
  213. /**
  214. * Mobile Navigation
  215. */
  216. .mobile-nav-toggle {
  217. color: #364146;
  218. font-size: 28px;
  219. cursor: pointer;
  220. display: none;
  221. line-height: 0;
  222. transition: 0.5s;
  223. }
  224. .mobile-nav-toggle.bi-x {
  225. color: #fff;
  226. }
  227. @media (max-width: 991px) {
  228. .mobile-nav-toggle {
  229. display: block;
  230. }
  231. .navbar ul {
  232. display: none;
  233. }
  234. }
  235. .navbar-mobile {
  236. position: fixed;
  237. overflow: hidden;
  238. top: 0;
  239. right: 0;
  240. left: 0;
  241. bottom: 0;
  242. background: rgba(32, 38, 41, 0.9);
  243. transition: 0.3s;
  244. z-index: 999;
  245. }
  246. .navbar-mobile .mobile-nav-toggle {
  247. position: absolute;
  248. top: 15px;
  249. right: 15px;
  250. }
  251. .navbar-mobile ul {
  252. display: block;
  253. position: absolute;
  254. top: 55px;
  255. right: 15px;
  256. bottom: 15px;
  257. left: 15px;
  258. padding: 10px 0;
  259. background-color: #fff;
  260. overflow-y: auto;
  261. transition: 0.3s;
  262. }
  263. .navbar-mobile a {
  264. padding: 10px 20px;
  265. font-size: 15px;
  266. color: #364146;
  267. }
  268. .navbar-mobile a:hover,
  269. .navbar-mobile .active,
  270. .navbar-mobile li:hover > a {
  271. color: #009cea;
  272. }
  273. .navbar-mobile .getstarted {
  274. margin: 15px;
  275. }
  276. .navbar-mobile .dropdown ul {
  277. position: static;
  278. display: none;
  279. margin: 10px 20px;
  280. padding: 10px 0;
  281. z-index: 99;
  282. opacity: 1;
  283. visibility: visible;
  284. background: #fff;
  285. box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  286. }
  287. .navbar-mobile .dropdown ul li {
  288. min-width: 200px;
  289. }
  290. .navbar-mobile .dropdown ul a {
  291. padding: 10px 20px;
  292. }
  293. .navbar-mobile .dropdown ul a i {
  294. font-size: 12px;
  295. }
  296. .navbar-mobile .dropdown ul a:hover,
  297. .navbar-mobile .dropdown ul .active:hover,
  298. .navbar-mobile .dropdown ul li:hover > a {
  299. color: #009cea;
  300. }
  301. .navbar-mobile .dropdown > .dropdown-active {
  302. display: block;
  303. }
  304. /*--------------------------------------------------------------
  305. # Footer
  306. --------------------------------------------------------------*/
  307. #footer {
  308. background: #f7f8f9;
  309. padding: 0 0 30px 0;
  310. color: #364146;
  311. font-size: 14px;
  312. }
  313. #footer .footer-top {
  314. background: #fff;
  315. padding: 60px 0 30px 0;
  316. border-top: 2px solid #e9ecee;
  317. border-bottom: 2px solid #e9ecee;
  318. }
  319. #footer .footer-top .footer-info {
  320. margin-bottom: 30px;
  321. }
  322. #footer .footer-top .footer-info h3 {
  323. font-size: 24px;
  324. margin: 0 0 20px 0;
  325. padding: 2px 0 2px 0;
  326. line-height: 1;
  327. font-weight: 700;
  328. }
  329. #footer .footer-top .footer-info p {
  330. font-size: 14px;
  331. line-height: 24px;
  332. margin-bottom: 0;
  333. font-family: "Raleway", sans-serif;
  334. color: #576971;
  335. }
  336. #footer .footer-top .social-links a {
  337. font-size: 18px;
  338. display: inline-block;
  339. background: #e9ecee;
  340. color: #8a9ca5;
  341. line-height: 1;
  342. padding: 8px 0;
  343. margin-right: 4px;
  344. border-radius: 50%;
  345. text-align: center;
  346. width: 36px;
  347. height: 36px;
  348. transition: 0.3s;
  349. }
  350. #footer .footer-top .social-links a:hover {
  351. background: #009cea;
  352. color: #fff;
  353. text-decoration: none;
  354. }
  355. #footer .footer-top h4 {
  356. font-size: 16px;
  357. font-weight: 600;
  358. color: #364146;
  359. position: relative;
  360. padding-bottom: 12px;
  361. }
  362. #footer .footer-top .footer-links {
  363. margin-bottom: 30px;
  364. }
  365. #footer .footer-top .footer-links ul {
  366. list-style: none;
  367. padding: 0;
  368. margin: 0;
  369. }
  370. #footer .footer-top .footer-links ul i {
  371. padding-right: 2px;
  372. color: #009cea;
  373. font-size: 18px;
  374. line-height: 1;
  375. margin-left: -5px;
  376. }
  377. #footer .footer-top .footer-links ul li {
  378. padding: 10px 0;
  379. display: flex;
  380. align-items: center;
  381. }
  382. #footer .footer-top .footer-links ul li:first-child {
  383. padding-top: 0;
  384. }
  385. #footer .footer-top .footer-links ul a {
  386. color: #576971;
  387. transition: 0.3s;
  388. display: inline-block;
  389. line-height: 1;
  390. }
  391. #footer .footer-top .footer-links ul a:hover {
  392. color: #009cea;
  393. }
  394. #footer .footer-top .footer-newsletter form {
  395. margin-top: 30px;
  396. background: #fff;
  397. padding: 6px 10px;
  398. position: relative;
  399. border-radius: 4px;
  400. border: 1px solid #e3e7e9;
  401. }
  402. #footer .footer-top .footer-newsletter form input[type="email"] {
  403. border: 0;
  404. padding: 4px;
  405. width: calc(100% - 110px);
  406. outline: none;
  407. }
  408. #footer .footer-top .footer-newsletter form input[type="submit"] {
  409. position: absolute;
  410. top: -1px;
  411. right: -2px;
  412. bottom: -1px;
  413. border: 0;
  414. background: none;
  415. font-size: 16px;
  416. padding: 0 20px;
  417. background: #009cea;
  418. color: #fff;
  419. transition: 0.3s;
  420. border-radius: 0 4px 4px 0;
  421. }
  422. #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  423. background: #007ab7;
  424. }
  425. #footer .copyright {
  426. text-align: center;
  427. padding-top: 30px;
  428. }
  429. #footer .credits {
  430. padding-top: 8px;
  431. text-align: center;
  432. font-size: 13px;
  433. color: #364146;
  434. }