layout.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. /* General */
  2. /* Top bar menu */
  3. .top-bar {
  4. padding: 10px 0;
  5. position: relative;
  6. z-index: 23;
  7. border-bottom: transparent solid 1px;
  8. }
  9. .top-bar .user-account-btn {
  10. display: none;
  11. }
  12. .top-bar .user-account-btn > a > img {
  13. border-radius: 3px;
  14. height: 30px;
  15. float: left;
  16. }
  17. .top-bar .user-account-btn > a {
  18. height: 30px;
  19. line-height: 30px;
  20. display: block;
  21. white-space: nowrap;
  22. float: left;
  23. }
  24. .top-bar .user-account-btn > a .glyph-icon,
  25. .top-bar .user-account-btn > a span {
  26. float: left;
  27. }
  28. .top-bar .btn-top .glyph-icon {
  29. opacity: 0.5;
  30. margin-right: 5px;
  31. }
  32. .top-bar .user-account-btn > a span {
  33. padding: 0 5px 0 10px;
  34. }
  35. .top-bar .user-account-btn .dropdown-menu.float-right {
  36. right: -9px;
  37. top: 110%;
  38. }
  39. /* Header */
  40. .main-header {
  41. position: relative;
  42. z-index: 20;
  43. }
  44. .main-header .container {
  45. position: relative;
  46. }
  47. .main-header .header-logo {
  48. float: left;
  49. margin: 19px 0 18px;
  50. background: url('../../image-resources/logo.png') left 50% no-repeat;
  51. width: 35px;
  52. height: 34px;
  53. }
  54. .main-header.font-inverse .header-logo {
  55. background: url('../../image-resources/logo-alt.png') left 50% no-repeat;
  56. }
  57. .main-header .header-logo span {
  58. opacity: 0.7;
  59. -moz-opacity: .70;
  60. filter: alpha(opacity: 70);
  61. display: block;
  62. }
  63. /* Header right buttons */
  64. .right-header-btn {
  65. float: right;
  66. margin-left: 15px;
  67. margin-top: 15px;
  68. }
  69. .right-header-btn .search-btn {
  70. border-left: rgba(0,0,0,0.08) solid 1px;
  71. padding: 5px 0 5px 17px;
  72. display: none;
  73. }
  74. .right-header-btn .search-btn a {
  75. height: 32px;
  76. line-height: 32px;
  77. width: 32px;
  78. display: block;
  79. text-align: center;
  80. }
  81. /* Mobile navigation */
  82. #mobile-navigation {
  83. margin-top: 3px;
  84. }
  85. /* Mobile nav menu */
  86. @media only screen and (max-width: 56.25em) {
  87. body .main-header .header-nav {
  88. border-width: 1px;
  89. border-style: solid;
  90. margin: 0 0 20px;
  91. padding: 0;
  92. border-radius: 4px;
  93. }
  94. body .main-header .header-nav,
  95. body .main-header .header-nav li,
  96. body .main-header .header-nav li a {
  97. float: none;
  98. clear: both;
  99. }
  100. body .main-header .header-nav > li > a {
  101. height: 32px;
  102. line-height: 32px;
  103. }
  104. body .main-header .header-nav > li > a > .glyph-icon {
  105. float: right;
  106. }
  107. body .main-header .header-nav > li > ul {
  108. position: relative;
  109. margin: 10px !important;
  110. border-radius: 4px;
  111. display: none;
  112. transform: translateY(-55px) !important;
  113. }
  114. body .main-header .header-nav li.sfHover > ul:before {
  115. display: none;
  116. }
  117. body .main-header .header-nav > li.sfHover > ul {
  118. display: block;
  119. }
  120. body .main-header .header-nav > li > ul.sf-mega-menu {
  121. padding: 10px 0 !important;
  122. width: auto;
  123. margin-top: 0 !important;
  124. transform: translateY(-65px) !important;
  125. }
  126. body .main-header .header-nav .header {
  127. border-radius: 50px;
  128. padding: 3px 10px !important;
  129. margin: 10px 15px !important;
  130. display: inline-block;
  131. }
  132. body .main-header .header-nav .divider {
  133. background: rgba(0, 0, 0, 0.1);
  134. }
  135. body .main-header .header-nav > li > ul.sf-mega-menu li {
  136. clear: none;
  137. }
  138. }
  139. /* Header nav menu */
  140. .main-header .header-nav {
  141. float: right;
  142. list-style: none;
  143. margin: 0;
  144. padding: 0;
  145. }
  146. .main-header .header-nav li,
  147. .main-header .header-nav li a {
  148. display: block;
  149. list-style: none;
  150. float: left;
  151. position: relative;
  152. }
  153. .main-header .header-nav > li > a {
  154. padding: 0 5px;
  155. margin: 0 10px;
  156. height: 78px;
  157. line-height: 78px;
  158. text-transform: uppercase;
  159. font-size: 13px;
  160. }
  161. .main-header .header-nav > li > a > .glyph-icon {
  162. margin-left: 5px;
  163. }
  164. .main-header .header-nav > li > a::before {
  165. position: absolute;
  166. top: 15px;
  167. left: 50%;
  168. margin-left: -7px;
  169. color: rgba(0, 0, 0, 0);
  170. content: '•';
  171. text-shadow: 0 0 rgba(0, 0, 0, 0);
  172. font-size: 15px;
  173. -webkit-transition: text-shadow 0.3s, color 0.3s;
  174. -moz-transition: text-shadow 0.3s, color 0.3s;
  175. transition: text-shadow 0.3s, color 0.3s;
  176. -webkit-transform: translateX(-50%);
  177. -moz-transform: translateX(-50%);
  178. transform: translateX(-50%);
  179. pointer-events: none;
  180. }
  181. .main-header .header-nav > li > a:hover::before,
  182. .main-header .header-nav > li.sfHover > a::before,
  183. .main-header .header-nav > li a:hover::before,
  184. .main-header .header-nav > li a:focus::before {
  185. color: #C5CDD2;
  186. text-shadow: 5px 0 #C5CDD2, -5px 0 #C5CDD2, -10px 0 #C5CDD2, 10px 0 #C5CDD2;
  187. }
  188. .main-header .header-nav li a.sf-with-ul:after {
  189. margin-left: 4px;
  190. -moz-opacity:0.65;
  191. filter:alpha(opacity:65);
  192. opacity:0.65;
  193. }
  194. .main-header .header-nav > li > ul:before {
  195. position: absolute;
  196. top: -6px;
  197. left: 15px;
  198. display: inline-block;
  199. border-right: 6px solid rgba(0, 0, 0, 0);
  200. border-bottom: 6px solid #253035;
  201. border-left: 6px solid rgba(0, 0, 0, 0);
  202. border-bottom-color: #253035;
  203. content: '';
  204. display: none;
  205. }
  206. .main-header .header-nav li.sfHover > ul:before {
  207. display: block;
  208. }
  209. /* Header subnav menu */
  210. .main-header .header-nav > li > ul {
  211. position: absolute;
  212. list-style: none;
  213. margin: 20px 0 0;
  214. padding: 10px;
  215. min-width: 230px;
  216. top: 58px;
  217. left: 0;
  218. border-bottom-left-radius: 3px;
  219. border-bottom-right-radius: 3px;
  220. opacity: 0;
  221. visibility: hidden;
  222. -webkit-transition: opacity 50ms ease 50ms, -webkit-transform 350ms ease 50ms;
  223. -moz-transition: opacity 50ms ease 50ms, -moz-transform 350ms ease 50ms;
  224. transition: opacity 50ms ease 50ms, transform 350ms ease 50ms;
  225. -webkit-transform: translateY(30px);
  226. -moz-transform: translateY(30px);
  227. -ms-transform: translateY(30px);
  228. -o-transform: translateY(30px);
  229. transform: translateY(30px);
  230. }
  231. .main-header .header-nav > li.sfHover > ul {
  232. opacity: 1;
  233. visibility: visible;
  234. -webkit-transform: translateY(0);
  235. -moz-transform: translateY(0);
  236. -ms-transform: translateY(0);
  237. -o-transform: translateY(0);
  238. transform: translateY(0);
  239. }
  240. .main-header .header-nav > li > ul > li {
  241. float: none;
  242. }
  243. .main-header .header-nav > li > ul li a {
  244. padding: 10px 20px;
  245. font-size: 14px;
  246. float: none;
  247. display: block;
  248. border-radius: 2px;
  249. }
  250. .main-header .header-nav > li > ul li .owl-item a {
  251. padding: 0;
  252. }
  253. .main-header .header-nav > li > ul li .owl-item a img {
  254. border-radius: 3px;
  255. }
  256. .main-header .header-nav .header {
  257. text-transform: uppercase;
  258. color: rgba(255,255,255,0.8);
  259. font-size: 12px;
  260. padding: 0 20px 5px;
  261. margin-top: 15px;
  262. }
  263. .main-header .header-nav .divider {
  264. background: rgba(255,255,255,0.1);
  265. }
  266. .main-header .header-nav .owl-pagination {
  267. display: none;
  268. }
  269. .header-opacity {
  270. background-color: rgba(255,255,255,0.1);
  271. }
  272. .header-fixed {
  273. position: fixed;
  274. width: 100%;
  275. left: 0;
  276. top: 0;
  277. }
  278. /* Header mega menu */
  279. .sf-mega {
  280. position: static !important;
  281. }
  282. .sf-mega .sf-mega-menu {
  283. width: 100%;
  284. margin: 0 !important;
  285. top: 78px !important;
  286. padding: 25px 20px !important;
  287. }
  288. .sf-mega .sf-mega-menu:before {
  289. display: none !important;
  290. }
  291. .sf-mega .sf-mega-menu > li > a {
  292. padding: 8px 15px !important;
  293. }
  294. .sf-mega .sf-mega-menu .header {
  295. margin: 0;
  296. padding: 0 15px 15px;
  297. }
  298. .main-header .header-nav li.sf-mega ul.sf-mega-menu li {
  299. float: left;
  300. }
  301. /* Main content */
  302. #page-content {
  303. padding: 20px;
  304. }
  305. /* Main titles */
  306. .p-title {
  307. margin: 35px 0;
  308. padding: 35px 0;
  309. text-transform: uppercase;
  310. text-align: center;
  311. position: relative;
  312. font-size: 30px;
  313. font-weight: 300;
  314. }
  315. .p-title span {
  316. padding: 0 20px;
  317. background: #fff;
  318. position: relative;
  319. z-index: 5;
  320. }
  321. .p-title:before {
  322. background: #dce4e8;
  323. height: 1px;
  324. position: absolute;
  325. content: "";
  326. left: 0;
  327. top: 50%;
  328. overflow: hidden;
  329. width: 100%;
  330. opacity: .80;
  331. z-index: 3;
  332. }
  333. .p-title.title-alt {
  334. margin: 15px 0;
  335. font-size: 24px;
  336. padding: 15px 0;
  337. }
  338. .p-title.title-alt span {
  339. padding: 0 10px;
  340. margin-left: 20px;
  341. }
  342. /* Boxed layout */
  343. .boxed-layout {
  344. background-color: #fdfdfd;
  345. }
  346. .boxed-layout #page-wrapper {
  347. margin-left: auto;
  348. margin-right: auto;
  349. background: #fff;
  350. box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
  351. }
  352. .boxed-layout .main-footer,
  353. .boxed-layout .main-header,
  354. .boxed-layout .top-bar {
  355. padding-left: 25px;
  356. padding-right: 25px;
  357. }
  358. /* Frontend components */
  359. #page-content.frontend-components .col-md-10 #page-title {
  360. margin-bottom: 15px;
  361. padding-bottom: 15px;
  362. border-bottom: #dfe8f1 solid 1px;
  363. }
  364. #page-content.frontend-components .col-md-10 #page-title p {
  365. opacity: 0.75;
  366. }
  367. body #theme-options.admin-options {
  368. display: none !important;
  369. }
  370. /* Body alternate */
  371. .body-alt {
  372. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  373. -webkit-font-smoothing: antialiased;
  374. font-size: 14px;
  375. font-weight: 300;
  376. }
  377. .body-alt .tabs-nav li a,
  378. .body-alt .main-header .header-nav > li > a,
  379. .body-alt .hero-heading,
  380. .body-alt .hero-text,
  381. .body-alt h1,
  382. .body-alt h2,
  383. .body-alt h3,
  384. .body-alt h4,
  385. .body-alt h5,
  386. .body-alt h6,
  387. .body-alt .main-header .header-nav > li > a,
  388. .body-alt .hero-heading,
  389. .body-alt .hero-text {
  390. font-family: 'Droid Sans', sans-serif;
  391. text-transform: initial;
  392. }
  393. .body-alt .main-header .header-nav > li > a {
  394. font-size: 15px;
  395. font-weight: bold;
  396. }
  397. .scroller-icon {
  398. position: absolute;
  399. bottom: 50px;
  400. left: 50%;
  401. margin-left: -20px;
  402. width: 40px;
  403. height: 60px;
  404. border: rgba(255,255,255,0.1) solid 1px;
  405. border-radius: 50px;
  406. }
  407. .scroller-icon .glyph-icon {
  408. width: 40px;
  409. height: 40px;
  410. line-height: 40px;
  411. font-size: 34px;
  412. animation: 3.4s ease-in-out infinite fadebottom;
  413. -webkit-animation: 3.4s ease-in-out infinite fadebottom;
  414. }