components.less 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457
  1. /*--------------------------------------------------------------------------
  2. + Services Style
  3. --------------------------------------------------------------------------*/
  4. /* Multicolumn */
  5. .service-wrapper{
  6. background: #FFF;
  7. margin: 20px 10px;
  8. text-align: center;
  9. padding: 30px 20px;
  10. .border-radius(5px);
  11. .box-shadow(~"0 0 3px #999");
  12. h3{
  13. font-size: 1.2em;
  14. margin: 10px 0 !important;
  15. }
  16. p{
  17. margin-top: 0;
  18. }
  19. }
  20. /* Row */
  21. .service-wrapper-row{
  22. padding: 10px 0;
  23. h3{
  24. padding-top: 15px;
  25. }
  26. .service-image{
  27. padding-top: 15px;
  28. text-align: center;
  29. img{
  30. max-width: 80%;
  31. vertical-align: bottom;
  32. bottom: 0;
  33. border: 7px solid #FFF;
  34. .border-radius(5px);
  35. .box-shadow(~"0 0 8px #999");
  36. }
  37. }
  38. }
  39. /*--------------------------------------------------------------------------
  40. + Pricing Table Style
  41. --------------------------------------------------------------------------*/
  42. .pricing-plan {
  43. float: left;
  44. text-align: center;
  45. background: #fafafa;
  46. background-clip: padding-box;
  47. position: relative;
  48. width: 48%;
  49. margin: 10px 1% 10px 0;
  50. padding: 20px;
  51. .border-radius(7px);
  52. .box-sizing(border-box);
  53. .box-shadow(~"0 1px 8px rgba(0, 0, 0, 0.4)");
  54. .transition(~"box-shadow .25s linear");
  55. &:hover{
  56. .box-shadow(~"0 0 8px #333");
  57. z-index: 5;
  58. }
  59. .pricing-plan-title {
  60. position: relative;
  61. margin: -20px -10px 20px;
  62. padding: 20px;
  63. line-height: 1;
  64. font-size: 16px;
  65. font-weight: bold;
  66. color: #595f6b;
  67. border-bottom: 1px dashed #d2d2d2;
  68. &:before {
  69. content: '';
  70. position: absolute;
  71. bottom: -1px;
  72. left: 0;
  73. right: 0;
  74. height: 1px;
  75. background-size: 3px 1px;
  76. .gradient(~"linear-gradient(to right, white, white 33%, #d2d2d2 34%, #d2d2d2)");
  77. }
  78. }
  79. .pricing-plan-price {
  80. margin: 0 auto 20px;
  81. width: 90px;
  82. height: 90px;
  83. line-height: 90px;
  84. font-size: 19px;
  85. font-weight: bold;
  86. color: white;
  87. background: #595f6b;
  88. .border-radius(45px);
  89. span {
  90. font-size: 12px;
  91. font-weight: normal;
  92. color: rgba(255, 255, 255, 0.9);
  93. }
  94. }
  95. .pricing-plan-features {
  96. margin-bottom: 20px;
  97. margin-left: 0;
  98. padding: 0;
  99. line-height: 2;
  100. font-size: 12px;
  101. color: #999;
  102. text-align: center;
  103. list-style-type: none;
  104. li{
  105. strong{
  106. font-weight: bold;
  107. color: #888;
  108. }
  109. }
  110. }
  111. .pricing-plan-promote {
  112. margin: 0;
  113. padding: 40px 20px;
  114. background-color: white;
  115. border-width: 2px;
  116. .border-radius(7px);
  117. z-index: 4;
  118. }
  119. }
  120. .ribbon-wrapper {
  121. width: 85px;
  122. height: 88px;
  123. overflow: hidden;
  124. position: absolute;
  125. top: 0;
  126. right: 0;
  127. }
  128. .price-ribbon {
  129. font: bold 15px Sans-Serif;
  130. color: #333;
  131. text-align: center;
  132. text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
  133. position: relative;
  134. padding: 7px 0;
  135. left: -5px;
  136. top: 15px;
  137. width: 120px;
  138. background-color: #FFF;
  139. color: #6a6340;
  140. .rotate(45deg);
  141. .box-shadow(~"0px 0px 3px rgba(0,0,0,0.3)");
  142. }
  143. .ribbon-green {
  144. background-color: #BFDC7A;
  145. }
  146. .ribbon-blue {
  147. background-color: #5ACBFF;
  148. }
  149. .ribbon-orange {
  150. background-color: #FF9542;
  151. }
  152. .ribbon-red {
  153. background-color: #FF7373;
  154. }
  155. @media (min-width: 768px) {
  156. .pricing-plan {
  157. width: 25%;
  158. margin: 20px 0;
  159. padding: 20px;
  160. .border-radius(0);
  161. &:first-child {
  162. .border-top-left-radius(7px);
  163. .border-bottom-left-radius(7px);
  164. }
  165. &:last-child {
  166. border-width: 2px;
  167. .border-top-right-radius(7px);
  168. .border-bottom-right-radius(7px);
  169. }
  170. }
  171. .pricing-plan-promote {
  172. background: #fff;
  173. padding: 40px;
  174. margin-top: 0;
  175. .border-radius(7px);
  176. z-index: 4;
  177. }
  178. }
  179. /*--------------------------------------------------------------------------
  180. + Contact Us Style
  181. --------------------------------------------------------------------------*/
  182. #contact-us-map{
  183. height: 300px;
  184. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  185. }
  186. .contact-us-details{
  187. margin: 20px 0;
  188. font-size: 0.9em;
  189. }
  190. /*--------------------------------------------------------------------------
  191. + Video Wrapper Style
  192. --------------------------------------------------------------------------*/
  193. .video-wrapper{
  194. .box-shadow(~"0 0 5px #000");
  195. margin: 20px 0;
  196. }
  197. /*--------------------------------------------------------------------------
  198. + Call to Action Bar Style
  199. --------------------------------------------------------------------------*/
  200. .calltoaction-wrapper{
  201. text-align: center;
  202. h3{
  203. display: inline-block;
  204. line-height: 36px;
  205. margin-right: 10px;
  206. margin-bottom: 0;
  207. }
  208. a{
  209. vertical-align: top;
  210. }
  211. }
  212. /*--------------------------------------------------------------------------
  213. + Testimonials Style
  214. --------------------------------------------------------------------------*/
  215. .testimonial{
  216. blockquote{
  217. margin: 0;
  218. padding: 0;
  219. border-left: none;
  220. p{
  221. font-size: 0.9em;
  222. margin-bottom: 20px;
  223. line-height: 1.5;
  224. }
  225. }
  226. .testimonial-bubble {
  227. text-align: justify;
  228. .border-radius(4px);
  229. padding: 0 20px 20px 20px;
  230. margin: 35px 10px 20px 10px;
  231. background: #FFF;
  232. position: relative;
  233. .box-sizing(border-box);
  234. .box-shadow(~"inset 0 1px #fff,0 1px 2px #c8cfe6");
  235. }
  236. .testimonial-bubble::before {
  237. background-color: #FFF;
  238. content: "\00a0";
  239. display: block;
  240. height: 20px;
  241. width: 20px;
  242. top: -10px;
  243. left: 45%;
  244. position: relative;
  245. .transform(~"rotate(45deg)");
  246. }
  247. .author-photo{
  248. text-align: center;
  249. img{
  250. margin: auto;
  251. border: 5px solid #FFF;
  252. .border-radius(100px);
  253. .box-shadow(~"inset 0 1px #fff,0 1px 2px #c8cfe6");
  254. }
  255. }
  256. .author-info{
  257. font-weight: 400;
  258. font-size: 0.8em;
  259. }
  260. }
  261. /*--------------------------------------------------------------------------
  262. + Clients Logos Style
  263. --------------------------------------------------------------------------*/
  264. .clients-logo-wrapper{
  265. img{
  266. max-width: 100%;
  267. }
  268. }
  269. /*--------------------------------------------------------------------------
  270. + News Style
  271. --------------------------------------------------------------------------*/
  272. .featured-news, .latest-news{
  273. .caption{
  274. padding: 10px 0 5px 0;
  275. a{
  276. font-size: 1.1em;
  277. font-weight: 600;
  278. color: @font-color;
  279. }
  280. }
  281. .intro{
  282. padding-bottom: 10px;
  283. font-size: 0.9em;
  284. a{
  285. white-space: nowrap;
  286. }
  287. }
  288. .date{
  289. font-size: 0.7em;
  290. color: #999;
  291. }
  292. img{
  293. max-width: 100%;
  294. margin: 10px 0 10px 0;
  295. .border-radius(5px);
  296. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  297. }
  298. }
  299. /*--------------------------------------------------------------------------
  300. + Frequently Asked Questions Style
  301. --------------------------------------------------------------------------*/
  302. .faq-wrapper{
  303. h3{
  304. margin-top: 20px !important;
  305. }
  306. .accordion-inner {
  307. margin: 10px 0 10px 20px;
  308. padding: 0 10px;
  309. font-size: 0.9em;
  310. .answer{
  311. font-weight: 600;
  312. }
  313. }
  314. }
  315. /*--------------------------------------------------------------------------
  316. + Blog Style
  317. --------------------------------------------------------------------------*/
  318. /* Posts List */
  319. .blog-post{
  320. background: #FFF;
  321. position: relative;
  322. margin: 20px 0;
  323. border: 7px solid #FFF;
  324. img{
  325. max-width: 100%;
  326. }
  327. .border-radius(5px);
  328. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  329. .post-info{
  330. background: #000;
  331. background: rgba(0,0,0,0.6);
  332. color: #FFF;
  333. line-height: 1.2;
  334. position: absolute;
  335. padding: 5px;
  336. left: 10px;
  337. top: 10px;
  338. .border-radius(5px);
  339. }
  340. .post-comments-count{
  341. text-align: center;
  342. }
  343. }
  344. .post-info{
  345. .post-comments-count{
  346. padding-top: 5px;
  347. i{
  348. margin-right: 5px;
  349. }
  350. a{
  351. color: #FFF;
  352. }
  353. }
  354. .post-date .date{
  355. font-size: 0.7em;
  356. font-weight: 600;
  357. }
  358. }
  359. .post-title{
  360. h3{
  361. font-size: 1.2em;
  362. border-bottom: 1px dotted #828282;
  363. margin: 0 20px;
  364. padding-top: 10px;
  365. a{
  366. color: @font-color;
  367. }
  368. }
  369. }
  370. .post-summary{
  371. margin: 10px 20px;
  372. p{
  373. color: #828282;
  374. font-size: 0.9em;
  375. text-align: justify;
  376. }
  377. }
  378. .post-more{
  379. text-align: right;
  380. padding: 0 20px 20px 0;
  381. }
  382. /* Single Post */
  383. .blog-single-post{
  384. padding: 10px 30px;
  385. }
  386. .single-post-title h3{
  387. font-size: 1.5em;
  388. margin: 0;
  389. }
  390. .single-post-info{
  391. margin-bottom: 20px;
  392. padding-bottom: 10px;
  393. border-bottom: 1px dotted #828282;
  394. i{
  395. color: #333;
  396. margin-right: 5px;
  397. }
  398. }
  399. .single-post-image{
  400. text-align: center;
  401. img{
  402. .box-shadow(~"0 0 5px #000");
  403. }
  404. }
  405. .single-post-content{
  406. margin: 30px 0 20px 0;
  407. padding-bottom: 20px;
  408. border-bottom: 2px dotted #CCC;
  409. p{
  410. color: #828282;
  411. font-size: 0.9em;
  412. text-align: justify;
  413. }
  414. }
  415. .post-comments{
  416. list-style-type: none;
  417. margin-left: 0;
  418. margin-bottom: 40px;
  419. padding: 0;
  420. ul{
  421. list-style-type: none;
  422. margin-left: 30px;
  423. padding: 0;
  424. }
  425. }
  426. .comment-wrapper p{
  427. margin: 0;
  428. position: relative;
  429. border: 1px solid #CCC;
  430. padding: 10px;
  431. margin-bottom: 10px;
  432. .border-radius(3px);
  433. }
  434. .comment-author{
  435. font-size: 1.3em;
  436. font-weight: 600;
  437. margin-bottom: 10px;
  438. img{
  439. max-width: 50px;
  440. .border-radius(25px);
  441. margin-right: 10px;
  442. }
  443. }
  444. .comment-date{
  445. font-size: 0.9em;
  446. margin-right: 20px;
  447. }
  448. .comment-actions{
  449. text-align: right;
  450. opacity: 0.6;
  451. .transition(~"opacity .25s linear");
  452. &:hover{
  453. text-align: right;
  454. opacity: 1;
  455. }
  456. i{
  457. color: #333;
  458. }
  459. }
  460. .comment-reply-btn{
  461. margin-left: 10px;
  462. }
  463. .blog-sidebar{
  464. h4{
  465. margin-top: 20px;
  466. font-weight: 700;
  467. &:first-child{
  468. margin-top: 0;
  469. }
  470. }
  471. ul{
  472. list-style-type: none;
  473. margin-left: 0;
  474. padding: 0;
  475. }
  476. .recent-posts, .blog-categories{
  477. li{
  478. padding: 5px 20px 5px 0;
  479. border-top: 1px solid #D5D5D5;
  480. &:last-child {
  481. border-bottom: 1px solid #D5D5D5;
  482. }
  483. }
  484. a{
  485. color: @font-color;
  486. }
  487. }
  488. }
  489. /*--------------------------------------------------------------------------
  490. + E-commerce Style
  491. --------------------------------------------------------------------------*/
  492. .shop-item{
  493. position: relative;
  494. background: #FFF;
  495. padding-bottom: 10px;
  496. margin-top: 20px;
  497. margin-bottom: 10px;
  498. border: 8px solid #FFF;
  499. .border-radius(5px);
  500. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  501. img{
  502. max-width: 100%;
  503. }
  504. .image{
  505. text-align: center;
  506. }
  507. .title{
  508. padding: 20px 0 10px;
  509. h3{
  510. font-size: 0.9em;
  511. margin: 0 10px;
  512. text-align: center;
  513. a{
  514. color: @font-color;
  515. text-transform:uppercase;
  516. }
  517. }
  518. }
  519. .colors{
  520. text-align: center;
  521. margin-bottom: 10px;
  522. span{
  523. display: inline-block;
  524. *display: inline;
  525. width: 8px;
  526. height: 8px;
  527. border-width: 1px;
  528. border-style: solid;
  529. margin: 2px;
  530. }
  531. }
  532. .price{
  533. color: @font-color;
  534. font-size: 1.5em;
  535. text-align: center;
  536. margin-bottom: 20px;
  537. font-weight: 600;
  538. .border-radius(7px);
  539. .price-was{
  540. color: #A7A7A7;
  541. font-size: 0.8em;
  542. text-decoration: line-through;
  543. }
  544. }
  545. .description{
  546. color: #828282;
  547. font-size: 0.9em;
  548. text-align: justify;
  549. margin: 0 10px;
  550. p{
  551. border-top: 1px solid #ECECEC;
  552. padding: 10px;
  553. margin: 0;
  554. }
  555. }
  556. .actions{
  557. border-top: 1px solid #ECECEC;
  558. margin: 0 10px;
  559. padding-top: 20px;
  560. text-align: center;
  561. span{
  562. font-size: 0.8em;
  563. white-space: nowrap;
  564. }
  565. }
  566. }
  567. .colors{
  568. text-align: center;
  569. margin-bottom: 10px;
  570. span{
  571. display: inline-block;
  572. *display: inline;
  573. width: 8px;
  574. height: 8px;
  575. border-width: 1px;
  576. border-style: solid;
  577. margin: 2px;
  578. }
  579. }
  580. span.color-white{
  581. background-color: #D7D7CF;
  582. border-color: darken(#D7D7CF, 10%);
  583. }
  584. span.color-black{
  585. background-color: #000;
  586. border-color: darken(#000, 10%);
  587. }
  588. span.color-blue{
  589. background-color: #073A52;
  590. border-color: darken(#073A52, 10%);
  591. }
  592. span.color-orange{
  593. background-color: #D56E1D;
  594. border-color: darken(#D56E1D, 10%);
  595. }
  596. span.color-green{
  597. background-color: #5C6632;
  598. border-color: darken(#5C6632, 10%);
  599. }
  600. span.color-red{
  601. background-color: #DA1111;
  602. border-color: darken(#DA1111, 10%);
  603. }
  604. /*--------------------------------------------------------------------------
  605. + Product Details Page Style
  606. --------------------------------------------------------------------------*/
  607. .product-image-large{
  608. border: 8px solid #FFF;
  609. text-align: center;
  610. margin-bottom: 10px;
  611. .border-radius(5px);
  612. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  613. img{
  614. max-width: 100%;
  615. }
  616. }
  617. .product-details{
  618. h4, h5{
  619. font-weight: 700;
  620. }
  621. h4{
  622. margin-bottom: 20px;
  623. }
  624. h5{
  625. margin-top: 20px;
  626. }
  627. .price{
  628. font-size: 1.4em;
  629. font-weight: 700;
  630. text-align: left;
  631. padding: 5px;
  632. background: fade(#FFF, 60%);
  633. display: inline;
  634. .border-radius(5px);
  635. }
  636. .price-was{
  637. text-decoration: line-through;
  638. font-size: 0.8em;
  639. font-weight: normal;
  640. }
  641. .shop-item-selections{
  642. width: 100%;
  643. td{
  644. line-height: 36px;
  645. &:first-child{
  646. width: 30%;
  647. }
  648. }
  649. }
  650. .choose-item-color{
  651. span{
  652. display: inline-block;
  653. *display: inline;
  654. width: 10px;
  655. height: 10px;
  656. border-width: 1px;
  657. border-style: solid;
  658. margin-bottom: -1px;
  659. margin-right: 2px;
  660. }
  661. }
  662. }
  663. .product-details-nav{
  664. margin-top: 30px !important;
  665. margin-left: 0 !important;
  666. }
  667. .product-detail-info{
  668. background: #fff;
  669. border-top: 0;
  670. border-left: 1px;
  671. border-right: 1px;
  672. border-bottom: 1px;
  673. border-color: #ddd;
  674. border-style: solid;
  675. padding: 20px 30px;
  676. p, ul{
  677. font-size: 0.9em;
  678. }
  679. table{
  680. width: 100%;
  681. td{
  682. font-size: 0.9em;
  683. width: 50%;
  684. line-height: 28px;
  685. border-bottom: 1px solid #E7E7E7;
  686. &:first-child{
  687. font-weight: 600;
  688. }
  689. }
  690. tr:last-child{
  691. td{
  692. border-bottom: 0;
  693. }
  694. }
  695. }
  696. }
  697. /*--------------------------------------------------------------------------
  698. + Shopping Cart Style
  699. --------------------------------------------------------------------------*/
  700. .shopping-cart{
  701. margin: 10px 0 0 0;
  702. width: 100%;
  703. border-collapse: separate;
  704. border-spacing: 0 10px;
  705. a{
  706. color: @font-color;
  707. }
  708. tr{
  709. background: #FFF;
  710. }
  711. td{
  712. padding: 10px;
  713. &:first-child{
  714. .border-radius(5px 0 0 5px);
  715. margin-left: 10px;
  716. }
  717. &:last-child{
  718. .border-radius(0 5px 5px 0);
  719. margin-right: 10px;
  720. }
  721. }
  722. .image, .image img{
  723. max-width: 150px;
  724. }
  725. .title{
  726. font-size: 1.1em;
  727. }
  728. .feature{
  729. font-size: 0.8em;
  730. }
  731. .color span{
  732. display: inline-block;
  733. *display: inline;
  734. width: 8px;
  735. height: 8px;
  736. border-width: 1px;
  737. border-style: solid;
  738. }
  739. .quantity{
  740. width: 80px;
  741. }
  742. .price{
  743. color: @font-color;
  744. font-size: 1.2em;
  745. width: 80px;
  746. text-align: center;
  747. }
  748. .actions{
  749. width: 80px;
  750. .btn{
  751. margin-bottom: 5px;
  752. }
  753. }
  754. }
  755. .cart-totals{
  756. margin: 20px 0 30px 0;
  757. border-top: 2px solid #535b60;
  758. font-size: 1.1em;
  759. line-height: 24px;
  760. text-align: right;
  761. width: 100%;
  762. td{
  763. width: 150px;
  764. padding: 3px 0;
  765. }
  766. .cart-grand-total{
  767. font-size: 1.3em;
  768. }
  769. }
  770. @media (max-width: 500px){
  771. .shopping-cart{
  772. .image{
  773. display: none;
  774. }
  775. }
  776. .cart-item-title{
  777. font-size: 0.8em;
  778. }
  779. }
  780. /*--------------------------------------------------------------------------
  781. + Products Slider Style
  782. --------------------------------------------------------------------------*/
  783. .products-slider{
  784. .shop-item{
  785. border:0;
  786. margin: 0;
  787. padding: 0;
  788. width: 25%;
  789. float: left;
  790. display: block;
  791. position: relative;
  792. .border-radius(5px);
  793. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  794. img{
  795. .border-radius(~"5px 5px 0 0");
  796. }
  797. .title{
  798. h3{
  799. a{
  800. font-size: 1em;
  801. font-weight: 400;
  802. }
  803. }
  804. }
  805. .price{
  806. font-size: 1.1em;
  807. font-weight: 400;
  808. margin-bottom: 10px;
  809. }
  810. .actions{
  811. padding: 10px 0;
  812. }
  813. }
  814. }
  815. @media (max-width: 768px){
  816. .products-slider .shop-item{
  817. width: 34%;
  818. }
  819. }
  820. @media (max-width: 479px){
  821. .products-slider .shop-item{
  822. width: 100%;
  823. }
  824. }
  825. /*--------------------------------------------------------------------------
  826. + Events List Style
  827. --------------------------------------------------------------------------*/
  828. .events-list{
  829. width: 100%;
  830. font-size: 0.9em;
  831. tr{
  832. td{
  833. padding: 5px 20px 5px 0;
  834. &:last-child{
  835. padding: 5px 0;
  836. text-align: right;
  837. }
  838. }
  839. &:hover{
  840. .event-date{
  841. border-left: 5px solid @theme-color;
  842. }
  843. }
  844. }
  845. .event-date{
  846. margin: 3px 0;
  847. padding: 2px 10px;
  848. border-left: 5px solid #CFCFCF;
  849. .transition(~"all .25s linear");
  850. }
  851. .event-date{
  852. .event-day{
  853. color: #808080;
  854. font-size: 1.5em;
  855. font-weight: 600;
  856. text-align: center;
  857. }
  858. .event-month{
  859. color: #CFCFCF;
  860. font-size: 1.1em;
  861. font-weight: 600;
  862. text-align: center;
  863. }
  864. .event-venue, .event-price{
  865. white-space: nowrap;
  866. }
  867. }
  868. }
  869. /*--------------------------------------------------------------------------
  870. + Jobs list Style
  871. --------------------------------------------------------------------------*/
  872. .jobs-list{
  873. width: 100%;
  874. th{
  875. font-size: 1.2em;
  876. text-align: left;
  877. padding: 10px 0;
  878. }
  879. td{
  880. padding: 5px 20px 5px 0;
  881. border-top: 1px solid #E6E6E6;
  882. }
  883. tr{
  884. &:last-child{
  885. td{
  886. border-bottom: 1px solid #E6E6E6;
  887. }
  888. }
  889. }
  890. }
  891. .job-position{
  892. a{
  893. color: @font-color;
  894. font-size: 1.1em;
  895. }
  896. }
  897. .job-location, .job-type{
  898. font-size: 0.9em;
  899. }
  900. // Join us promo
  901. .join-us-promo{
  902. blockquote{
  903. margin: 0;
  904. padding: 0;
  905. border-left: none;
  906. }
  907. blockquote{
  908. p{
  909. font-size: 1.1em;
  910. margin-bottom: 20px;
  911. line-height: 1.5;
  912. }
  913. }
  914. .author-info{
  915. font-weight: 400;
  916. font-size: 0.8em;
  917. }
  918. .author-photo{
  919. text-align: center;
  920. }
  921. .author-photo{
  922. img{
  923. margin: auto;
  924. border: 5px solid #FFF;
  925. .border-radius(70px);
  926. .box-shadow(~"inset 0 1px #fff,0 1px 2px #c8cfe6");
  927. }
  928. }
  929. }
  930. .join-us-bubble {
  931. text-align: justify;
  932. .border-radius(4px);
  933. padding: 20px 20px 0 20px;
  934. margin-top: 30px;
  935. margin-bottom: 30px;
  936. background: #FFF;
  937. position: relative;
  938. .box-sizing(border-box);
  939. .box-shadow(~"inset 0 1px #fff,0 0 4px #c8cfe6");
  940. }
  941. .join-us-bubble::after {
  942. background: #FFF;
  943. content: "\00a0";
  944. display: block;
  945. height: 20px;
  946. width: 20px;
  947. bottom: -10px;
  948. left: 45%;
  949. position: relative;
  950. .transform(~"rotate(45deg)");
  951. .box-shadow(~"inset 0 1px #fff,1px 1px 1px #c8cfe6");
  952. }
  953. .job-details-wrapper p{
  954. text-align: justify;
  955. }
  956. /*--------------------------------------------------------------------------
  957. + Login/Register/Reset Password Forms Style
  958. --------------------------------------------------------------------------*/
  959. .basic-login{
  960. background: fade(#FFF, 80%);
  961. padding: 20px 20px 10px 20px;
  962. .border-radius(5px);
  963. .box-shadow(~"inset 0 1px #fff,0 0 4px #c8cfe6");
  964. form{
  965. margin: 0;
  966. }
  967. label{
  968. line-height: 30px;
  969. font-size: 1.2em;
  970. }
  971. input[type="checkbox"]{
  972. margin-top: 4px;
  973. }
  974. }
  975. .social-login{
  976. p{
  977. text-align: center;
  978. font-size: 1.2em;
  979. font-style: italic;
  980. padding: 20px 0;
  981. }
  982. .social-login-buttons{
  983. text-align: center;
  984. a{
  985. position: relative;
  986. display: inline-block;
  987. white-space: nowrap;
  988. height: 35px;
  989. line-height: 35px;
  990. padding-right: 15px;
  991. margin: 10px 5px;
  992. color: #fff;
  993. font-size: 1.1em;
  994. text-align: left;
  995. .border-radius(3px);
  996. .transition(~"opacity .2s linear");
  997. .translateZ(0);
  998. &:hover{
  999. opacity: 0.8;
  1000. text-decoration: none;
  1001. }
  1002. &:before{
  1003. content: '';
  1004. display: block;
  1005. position: absolute;
  1006. top: 5px;
  1007. width: 24px;
  1008. height: 24px;
  1009. background-image: ~"url(../img/social-login.png)";
  1010. background-repeat: no-repeat;
  1011. }
  1012. }
  1013. }
  1014. .btn-facebook-login{
  1015. padding-left: 35px;
  1016. background-color: #6886bc;
  1017. .gradient(~"linear-gradient(top,#6886bc 0,#466ca9 100%)");
  1018. }
  1019. .btn-twitter-login{
  1020. padding-left: 45px;
  1021. background-color: #25b6e6;
  1022. }
  1023. .btn-facebook-login:before{
  1024. left: 10px;
  1025. background-position: 0 0;
  1026. }
  1027. .btn-twitter-login:before{
  1028. left: 15px;
  1029. background-position: -48px 0;
  1030. }
  1031. .not-member{
  1032. p{
  1033. font-size: 1.5em;
  1034. font-weight: 600;
  1035. font-style: normal;
  1036. margin-top: 30px;
  1037. border-top: 1px solid #CCC;
  1038. }
  1039. }
  1040. }
  1041. /*--------------------------------------------------------------------------
  1042. + 'In Press' Style
  1043. --------------------------------------------------------------------------*/
  1044. .in-press{
  1045. a{
  1046. color: lighten(@font-color, 30%);
  1047. font-size: 1.3em;
  1048. font-family: Georgia, serif;
  1049. line-height: 28px;
  1050. position: relative;
  1051. padding-left: 16px;
  1052. padding-bottom: 32px;
  1053. margin-bottom: 15px;
  1054. display: block;
  1055. .transition(~"color .25s linear");
  1056. &:hover{
  1057. color: @theme-color;
  1058. text-decoration: none;
  1059. }
  1060. &:after{
  1061. content: '';
  1062. display: block;
  1063. position: absolute;
  1064. bottom: -10px;
  1065. right: 20px;
  1066. width: 120px;
  1067. height: 32px;
  1068. background-image: ~"url(../img/in-press.png)";
  1069. background-repeat: no-repeat;
  1070. .transition(~".25s linear");
  1071. }
  1072. &:before {
  1073. content: "\201C";
  1074. margin-left: -16px;
  1075. font-size: 2.2em;
  1076. }
  1077. }
  1078. }
  1079. // Change the below classes and image to meet your press coverage
  1080. .press-wired a{
  1081. &:after{
  1082. background-position: 0px 0px;
  1083. }
  1084. &:hover{
  1085. &:after{
  1086. background-position: 0px -32px;
  1087. }
  1088. }
  1089. }
  1090. .press-mashable a{
  1091. &:after{
  1092. background-position: -120px 0px;
  1093. }
  1094. &:hover{
  1095. &:after{
  1096. background-position: -120px -32px;
  1097. }
  1098. }
  1099. }
  1100. .press-techcrunch a{
  1101. &:after{
  1102. background-position: -240px 0px;
  1103. }
  1104. &:hover{
  1105. &:after{
  1106. background-position: -240px -32px;
  1107. }
  1108. }
  1109. }
  1110. /*--------------------------------------------------------------------------
  1111. + Portfolio Style
  1112. --------------------------------------------------------------------------*/
  1113. .portfolio-item{
  1114. position: relative;
  1115. background: #FFF;
  1116. margin-bottom: 20px;
  1117. border: 8px solid #FFF;
  1118. .border-radius(5px);
  1119. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  1120. .transition(~"all .5s ease");
  1121. .portfolio-image{
  1122. overflow: hidden;
  1123. text-align: center;
  1124. position: relative;
  1125. img{
  1126. max-width: 100%;
  1127. .transition(~"all .25s ease");
  1128. }
  1129. }
  1130. &:hover{
  1131. border: 8px solid @theme-color;
  1132. .portfolio-image{
  1133. img{
  1134. position: relative;
  1135. .transform(~"scale(1.1) rotate(2deg)");
  1136. }
  1137. }
  1138. }
  1139. ul{
  1140. list-style-type: none;
  1141. margin-left: 0;
  1142. margin-top: 20px;
  1143. text-align: center;
  1144. padding: 0;
  1145. li{
  1146. line-height: 28px;
  1147. }
  1148. }
  1149. .portfolio-project-name{
  1150. font-size: 1.3em;
  1151. text-transform: uppercase;
  1152. }
  1153. .read-more{
  1154. text-align: center;
  1155. padding-top: 10px;
  1156. }
  1157. .portfolio-info-fade{
  1158. .opacity(0);
  1159. top: 0;
  1160. position: absolute;
  1161. background: #000;
  1162. background: fade(#000, 70%);
  1163. width: 100%;
  1164. height: 100%;
  1165. color: #FFF;
  1166. text-shadow: 2px 2px 4px #000000;
  1167. filter: dropshadow(color=#000000, offx=2, offy=2);
  1168. .transition(~"opacity .25s linear");
  1169. ul{
  1170. margin-top: 10%;
  1171. }
  1172. .btn:hover{
  1173. background: @theme-color;
  1174. }
  1175. ul{
  1176. margin: 10% 20px 0 20px;
  1177. padding: 0;
  1178. li{
  1179. text-align: center;
  1180. &:first-child{
  1181. border-bottom: 1px solid #CCC;
  1182. }
  1183. }
  1184. }
  1185. }
  1186. &:hover{
  1187. .portfolio-info-fade{
  1188. display: block;
  1189. .opacity(1);
  1190. }
  1191. }
  1192. }
  1193. .lt-ie9 .portfolio-info-fade{
  1194. display: none;
  1195. }
  1196. .lt-ie9 .portfolio-item:hover .portfolio-info-fade{
  1197. display: block;
  1198. }
  1199. .portfolio-visit-btn{
  1200. padding-top: 15px;
  1201. }
  1202. .portfolio-item-description{
  1203. ul{
  1204. padding: 0;
  1205. }
  1206. }
  1207. /*--------------------------------------------------------------------------
  1208. + Our Team Style
  1209. --------------------------------------------------------------------------*/
  1210. .team-member{
  1211. position: relative;
  1212. background: #FFF;
  1213. margin-bottom: 20px;
  1214. border: 8px solid #FFF;
  1215. .box-shadow(~"inset 0 1px #fff,0 0 8px #c8cfe6");
  1216. img{
  1217. max-width: 100%;
  1218. }
  1219. ul{
  1220. list-style-type: none;
  1221. margin-left: 0;
  1222. margin-top: 20px;
  1223. li{
  1224. line-height: 28px;
  1225. }
  1226. }
  1227. &:hover{
  1228. .team-member-image{
  1229. .opacity(1);
  1230. }
  1231. }
  1232. .team-member-image{
  1233. text-align: center;
  1234. position: relative;
  1235. .transition(~"opacity .25s linear");
  1236. .opacity(0.85);
  1237. }
  1238. .team-member-name{
  1239. font-size: 1.3em;
  1240. text-transform: uppercase;
  1241. }
  1242. .team-member-social{
  1243. position: absolute;
  1244. right: 0;
  1245. .opacity(0.5);
  1246. .transition(~"opacity .25s linear");
  1247. .team-member-social i{
  1248. margin-top: 3px;
  1249. }
  1250. &:hover{
  1251. .opacity(1);
  1252. }
  1253. }
  1254. }
  1255. /*--------------------------------------------------------------------------
  1256. + Sitemap Style
  1257. --------------------------------------------------------------------------*/
  1258. .sitemap{
  1259. margin-left: 0;
  1260. list-style-type: none;
  1261. padding: 0;
  1262. a{
  1263. color: @font-color;
  1264. }
  1265. li{
  1266. padding: 10px 0;
  1267. font-weight: 600;
  1268. }
  1269. ul{
  1270. list-style-type: none;
  1271. margin-top: 10px;
  1272. margin-left: 10px;
  1273. padding: 0;
  1274. li{
  1275. padding: 3px 0;
  1276. font-size: 0.9em;
  1277. font-weight: 400;
  1278. }
  1279. }
  1280. }
  1281. /*--------------------------------------------------------------------------
  1282. + Coming Soon Page Style
  1283. --------------------------------------------------------------------------*/
  1284. .coming-soon-top{
  1285. background: #FFF;
  1286. background: fade(#FFF, 80%);
  1287. min-height: 80px;
  1288. .logo-wrapper{
  1289. padding-top: 20px;
  1290. }
  1291. }
  1292. .coming-soon-content{
  1293. margin-top: 5%;
  1294. text-align: center;
  1295. h3{
  1296. font-size: 3em;
  1297. line-height: 1.3em;
  1298. font-weight: 400;
  1299. color: #FFF;
  1300. margin-bottom: 40px;
  1301. text-shadow: 1px 1px 8px #000000;
  1302. }
  1303. p{
  1304. color: #E6E6E6;
  1305. text-shadow: 2px 2px 4px #000000;
  1306. }
  1307. }
  1308. .coming-soon-subscribe{
  1309. padding-top: 30px;
  1310. .btn{
  1311. border-radius: 0 5px 5px 0;
  1312. }
  1313. p{
  1314. margin-top: 10px;
  1315. }
  1316. }
  1317. .coming-soon-social{
  1318. margin-top: 60px;
  1319. .opacity(0.7);
  1320. .transition(~"opacity .25s linear");
  1321. a{
  1322. display: inline-block;
  1323. }
  1324. &:hover{
  1325. .opacity(1);
  1326. }
  1327. }
  1328. .full-screen-background{
  1329. z-index: -999;
  1330. min-height: 100%;
  1331. min-width: 1024px;
  1332. width: 100%;
  1333. height: auto;
  1334. position: fixed;
  1335. top: 0;
  1336. left: 0;
  1337. }
  1338. /*--------------------------------------------------------------------------
  1339. + Breadcrumbs Section Style
  1340. --------------------------------------------------------------------------*/
  1341. .section-breadcrumbs{
  1342. background: #222;
  1343. background: fade(#222, 80%);
  1344. margin-bottom: 10px;
  1345. h1{
  1346. color: #FAFAFA;
  1347. font-size: 1.6em;
  1348. margin-bottom: 0;
  1349. text-transform: none;
  1350. }
  1351. }
  1352. /*--------------------------------------------------------------------------
  1353. Footer Style
  1354. --------------------------------------------------------------------------*/
  1355. .footer{
  1356. background: #222;
  1357. color: #A0A0A0;
  1358. padding: 0 20px 10px 20px;
  1359. border-top: 4px solid @theme-color;
  1360. margin-top: 20px;
  1361. .box-shadow(~"0 -1px 12px rgba(0,0,0,0.4)");
  1362. h3{
  1363. color: #E4E4E4;
  1364. font-size: 1.3em;
  1365. border-bottom: 1px dotted #7C7C7C;
  1366. }
  1367. ul{
  1368. padding: 0;
  1369. }
  1370. }
  1371. .footer-navigate-section li{
  1372. line-height: 20px !important;
  1373. }
  1374. .footer-stay-connected{
  1375. a{
  1376. text-align: left;
  1377. text-indent: -9999px;
  1378. display: block;
  1379. width: 115px;
  1380. height: 40px;
  1381. background: ~"url(../img/stay-connected.png)";
  1382. .opacity(0.5);
  1383. .transition(~"opacity .25s linear");
  1384. &:hover{
  1385. .opacity(1);
  1386. }
  1387. }
  1388. a.facebook{
  1389. background-position: -115px 0;
  1390. }
  1391. a.twitter{
  1392. background-position: -230px 0;
  1393. }
  1394. a.googleplus{
  1395. background-position: 0 0;
  1396. }
  1397. li{
  1398. text-align: center;
  1399. }
  1400. }
  1401. .footer-copyright{
  1402. text-align: center;
  1403. color: #7C7C7C;
  1404. border-top: 1px dotted #7C7C7C;
  1405. padding-top: 10px;
  1406. font-size: 0.9em;
  1407. }
  1408. /*--------------------------------------------------------------------------
  1409. + Pagination Style (overrides Bootstrap style)
  1410. --------------------------------------------------------------------------*/
  1411. .pagination-wrapper{
  1412. margin-top: 15px;
  1413. text-align: center;
  1414. }
  1415. .pagination>li>a, .pagination>li>span{
  1416. border: none;
  1417. border-bottom: 3px solid #FFF;
  1418. color: #666666;
  1419. margin-left: 0;
  1420. margin-bottom: 5px;
  1421. .transition(~"all .25s linear");
  1422. }
  1423. .pagination>li>a:hover, .pagination>li>a:focus, .pagination>.active>a, .pagination>.active>span{
  1424. background: #FFF;
  1425. }
  1426. .pagination>li>a:hover{
  1427. border-bottom: 3px solid #666666;
  1428. }
  1429. .pagination>.active>a, .pagination>.active>span{
  1430. color: #666666;
  1431. border-bottom: 3px solid @theme-color;
  1432. }
  1433. .pagination>.disabled>a{
  1434. border-color: #fff;
  1435. }
  1436. .pagination>.disabled>span, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
  1437. margin-bottom: 0;
  1438. color: #C9C9C9;
  1439. background-color: #FFF;
  1440. cursor: default;
  1441. }
  1442. /*--------------------------------------------------------------------------
  1443. + Custom Style for Maps
  1444. --------------------------------------------------------------------------*/
  1445. .leaflet-popup-content-wrapper{
  1446. .border-radius(5px);
  1447. }
  1448. /*--------------------------------------------------------------------------
  1449. + Custom Style for Tabs (overrides Bootstrap)
  1450. --------------------------------------------------------------------------*/
  1451. .nav-tabs>li>a {
  1452. font-size: 1.1em;
  1453. padding: 10px 15px;
  1454. color: @font-color;
  1455. }
  1456. .nav-tabs>.active>a, .nav-tabs>.active>a:hover, .nav-tabs>.active>a:focus {
  1457. font-weight: 600;
  1458. background-color: #ffffff;
  1459. border: 1px solid #ddd;
  1460. border-top: 3px solid @theme-color;
  1461. border-bottom-color: transparent;
  1462. cursor: default;
  1463. }
  1464. /*--------------------------------------------------------------------------
  1465. + 404 Page Style
  1466. --------------------------------------------------------------------------*/
  1467. .error-page-wrapper{
  1468. font-size: 1.5em;
  1469. font-weight: 600;
  1470. margin: 100px 0;
  1471. text-align: center;
  1472. }
  1473. /*--------------------------------------------------------------------------
  1474. + Homepage Slider Style (modified sequencejs CSS). Sorry, no LESS here
  1475. --------------------------------------------------------------------------*/
  1476. #sequence {
  1477. position: relative;
  1478. overflow: hidden;
  1479. width: 100%;
  1480. max-width: 1920px;
  1481. color: white;
  1482. font-size: 0.625em;
  1483. margin: 0 auto 30px auto;
  1484. position: relative;
  1485. height: 400px;
  1486. img{
  1487. max-width: 100%;
  1488. }
  1489. }
  1490. #sequence > .sequence-canvas {
  1491. list-style-type: none;
  1492. height: 400px;
  1493. margin: 0;
  1494. padding: 0;
  1495. width: 100%;
  1496. }
  1497. #sequence h2{
  1498. font-size: 4em;
  1499. color: #FFF;
  1500. text-shadow: 2px 2px 3px #444;
  1501. border: none;
  1502. padding-left: 0;
  1503. margin-top: 0;
  1504. }
  1505. #sequence h3{
  1506. font-size: 2em;
  1507. color: #FFF;
  1508. text-shadow: 2px 2px 3px #444;
  1509. }
  1510. #sequence > .sequence-canvas > li {
  1511. position: absolute;
  1512. width: 100%;
  1513. height: 400px;
  1514. z-index: 1;
  1515. .transition-property(background);
  1516. background-position: -50px 0;
  1517. }
  1518. #sequence > .sequence-canvas > li.bg1 {
  1519. background-image: ~"url(../img/homepage-slider/slider-bg1.jpg)";
  1520. }
  1521. #sequence > .sequence-canvas > li.bg2 {
  1522. background-image: ~"url(../img/homepage-slider/slider-bg2.jpg)";
  1523. }
  1524. #sequence > .sequence-canvas > li.bg3 {
  1525. background-image: ~"url(../img/homepage-slider/slider-bg3.jpg)";
  1526. }
  1527. #sequence > .sequence-canvas > li.bg4 {
  1528. background-image: ~"url(../img/homepage-slider/slider-bg4.jpg)";
  1529. }
  1530. #sequence > .sequence-canvas > li.bg5 {
  1531. background-image: ~"url(../img/homepage-slider/slider-bg5.jpg)";
  1532. }
  1533. #sequence > .sequence-canvas > li.bg6 {
  1534. background-image: ~"url(../img/homepage-slider/slider-bg6.jpg)";
  1535. }
  1536. #sequence > .sequence-canvas > li.bg7 {
  1537. background-image: ~"url(../img/homepage-slider/slider-bg7.jpg)";
  1538. }
  1539. #sequence > .sequence-canvas > li.bg8 {
  1540. background-image: ~"url(../img/homepage-slider/slider-bg8.jpg)";
  1541. }
  1542. #sequence > .sequence-canvas > li.bg9 {
  1543. background-image: ~"url(../img/homepage-slider/slider-bg9.jpg)";
  1544. }
  1545. #sequence > .sequence-canvas > li.bg10 {
  1546. background-image: ~"url(../img/homepage-slider/slider-bg10.jpg)";
  1547. }
  1548. #sequence > .sequence-canvas > li.bg11 {
  1549. background-image: ~"url(../img/homepage-slider/slider-bg11.jpg)";
  1550. }
  1551. #sequence > .sequence-canvas > li.bg12 {
  1552. background-image: ~"url(../img/homepage-slider/slider-bg12.jpg)";
  1553. }
  1554. #sequence > .sequence-canvas > li.bg13 {
  1555. background-image: ~"url(../img/homepage-slider/slider-bg13.jpg)";
  1556. }
  1557. #sequence > .sequence-canvas > li.bg14 {
  1558. background-image: ~"url(../img/homepage-slider/slider-bg14.jpg)";
  1559. }
  1560. #sequence > .sequence-canvas > li img {
  1561. height: 96%;
  1562. }
  1563. #sequence > .sequence-canvas li > * {
  1564. position: absolute;
  1565. .transition-property(left, opacity);
  1566. }
  1567. .sequence-next,
  1568. .sequence-prev {
  1569. color: white;
  1570. cursor: pointer;
  1571. display: none;
  1572. font-weight: bold;
  1573. padding: 10px 15px;
  1574. position: absolute;
  1575. top: 50%;
  1576. z-index: 1000;
  1577. height: 75px;
  1578. margin-top: -47.5px;
  1579. }
  1580. .sequence-pause {
  1581. bottom: 0;
  1582. cursor: pointer;
  1583. position: absolute;
  1584. z-index: 1000;
  1585. }
  1586. .sequence-paused {
  1587. .opacity(0.3);
  1588. }
  1589. .sequence-prev {
  1590. left: 3%;
  1591. }
  1592. .sequence-next {
  1593. right: 3%;
  1594. }
  1595. .sequence-prev img,
  1596. .sequence-next img {
  1597. height: 100%;
  1598. width: auto;
  1599. }
  1600. #sequence-preloader {
  1601. background: #d9d9d9;
  1602. }
  1603. .sequence-pagination-wrapper{
  1604. position: absolute;
  1605. bottom: 10px;
  1606. right: 20px;
  1607. z-index: 99;
  1608. }
  1609. .sequence-pagination {
  1610. display: none;
  1611. z-index: 99;
  1612. .transition-duration(0.5s);
  1613. }
  1614. .sequence-pagination li {
  1615. display: inline-block;
  1616. *display: inline;
  1617. width: 14px;
  1618. height: 14px;
  1619. margin: 0 4px;
  1620. text-indent: -999em;
  1621. border: 4px solid @theme-color;
  1622. cursor: pointer;
  1623. .border-radius(30px);
  1624. .opacity(0.8);
  1625. .transition(~"background .5s, opacity .5s");
  1626. }
  1627. .sequence-pagination li.current {
  1628. background: @theme-color;
  1629. .opacity(1);
  1630. }
  1631. .sequence-next,
  1632. .sequence-prev {
  1633. position: absolute;
  1634. opacity: 0.6;
  1635. .transition-duration(1s);
  1636. }
  1637. .sequence-next:hover,
  1638. .sequence-prev:hover {
  1639. .opacity(1);
  1640. .transition-duration(1s);
  1641. }
  1642. #sequence .title {
  1643. font-size: 3.8em;
  1644. text-transform: none;
  1645. left: 0%;
  1646. width: 35%;
  1647. .opacity(0);
  1648. bottom: 60%;
  1649. z-index: 50;
  1650. }
  1651. #sequence > .sequence-canvas > li.animate-in{
  1652. background-position: 0 0;
  1653. .transition-duration(1.5s);
  1654. }
  1655. #sequence .animate-in .title {
  1656. left: 15%;
  1657. .opacity(1);
  1658. .transition-duration(0.5s);
  1659. }
  1660. #sequence .animate-out .title {
  1661. left: 35%;
  1662. .opacity(0);
  1663. .transition-duration(0.5s);
  1664. }
  1665. .subtitle {
  1666. color: black;
  1667. font-size: 2em;
  1668. left: 35%;
  1669. width: 35%;
  1670. .opacity(0);
  1671. top: 40%;
  1672. }
  1673. .animate-in .subtitle {
  1674. left: 15%;
  1675. .opacity(1);
  1676. .transition-duration(0.5s);
  1677. }
  1678. .animate-out .subtitle {
  1679. left: 65%;
  1680. .opacity(0);
  1681. .transition-duration(0.5s);
  1682. }
  1683. .slide-img {
  1684. left: 90%;
  1685. top: 20%;
  1686. .opacity(0);
  1687. position: relative;
  1688. height: auto !important;
  1689. max-height: 450px !important;
  1690. max-width: 45% !important;
  1691. }
  1692. .animate-in .slide-img {
  1693. left: 55%;
  1694. .opacity(1);
  1695. .transition-duration(1s);
  1696. }
  1697. .animate-out .slide-img {
  1698. left: 15%;
  1699. .opacity(0);
  1700. .transition-duration(1s);
  1701. }
  1702. @media only screen and (min-width: 992px) {
  1703. #sequence .title {
  1704. width: 42%;
  1705. }
  1706. }
  1707. @media only screen and (max-width: 838px) {
  1708. #sequence .slide-img {
  1709. max-height: 530px !important;
  1710. width: auto;
  1711. }
  1712. }
  1713. @media only screen and (max-width: 768px) {
  1714. #sequence {
  1715. height: 400px;
  1716. }
  1717. #sequence .title {
  1718. font-size: 2.8em;
  1719. }
  1720. #sequence .subtitle {
  1721. font-size: 1.6em;
  1722. }
  1723. #sequence .sequence-next,
  1724. #sequence .sequence-prev {
  1725. height: 60px;
  1726. margin-top: -40px;
  1727. }
  1728. #sequence .slide-img {
  1729. max-height: 480px !important;
  1730. width: auto;
  1731. }
  1732. }
  1733. @media only screen and (max-width: 568px) {
  1734. .slide-img {
  1735. left: 50%;
  1736. width: auto;
  1737. max-width: 80% !important;
  1738. }
  1739. #sequence .animate-in .slide-img {
  1740. left: 50%;
  1741. margin-left: -40%;
  1742. }
  1743. #sequence .animate-out .slide-img {
  1744. left: 20%;
  1745. margin-left: -20%;
  1746. }
  1747. #sequence .title {
  1748. background: #a1a1a1;
  1749. background: rgba(0, 0, 0, 0.3);
  1750. bottom: 0;
  1751. left: 100%;
  1752. padding: 4%;
  1753. width: 100%;
  1754. margin-bottom: 0;
  1755. z-index: 10;
  1756. }
  1757. #sequence .animate-in .title {
  1758. left: 0%;
  1759. }
  1760. #sequence .animate-out .title {
  1761. left: -100%;
  1762. }
  1763. #sequence .subtitle {
  1764. visibility: hidden;
  1765. }
  1766. }
  1767. /*--------------------------------------------------------------------------
  1768. + Content Slider Style (bxSlider CSS), Sorry, no LESS here
  1769. --------------------------------------------------------------------------*/
  1770. .bx-wrapper {
  1771. position: relative;
  1772. margin: 0 auto 30px;
  1773. padding: 0;
  1774. *zoom: 1;
  1775. }
  1776. .bx-wrapper img {
  1777. max-width: 100%;
  1778. display: block;
  1779. }
  1780. .bx-wrapper .bx-pager,
  1781. .bx-wrapper .bx-controls-auto {
  1782. position: absolute;
  1783. bottom: -30px;
  1784. width: 100%;
  1785. }
  1786. /* LOADER */
  1787. .bx-wrapper .bx-loading {
  1788. min-height: 50px;
  1789. background: ~"url(../img/bx_loader.gif) center center no-repeat #fff";
  1790. height: 100%;
  1791. width: 100%;
  1792. position: absolute;
  1793. top: 0;
  1794. left: 0;
  1795. z-index: 2000;
  1796. }
  1797. /* PAGER */
  1798. .bx-wrapper .bx-pager {
  1799. text-align: center;
  1800. font-size: .85em;
  1801. font-family: Arial;
  1802. font-weight: bold;
  1803. color: #666;
  1804. padding-top: 20px;
  1805. }
  1806. .bx-wrapper .bx-pager .bx-pager-item,
  1807. .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  1808. display: inline-block;
  1809. *zoom: 1;
  1810. *display: inline;
  1811. }
  1812. .bx-wrapper .bx-pager.bx-default-pager a {
  1813. background: #666;
  1814. text-indent: -9999px;
  1815. display: block;
  1816. width: 10px;
  1817. height: 10px;
  1818. margin: 0 5px;
  1819. outline: 0;
  1820. .border-radius(5px);
  1821. }
  1822. .bx-wrapper .bx-pager.bx-default-pager a:hover,
  1823. .bx-wrapper .bx-pager.bx-default-pager a.active {
  1824. background: #000;
  1825. }
  1826. /* DIRECTION CONTROLS (NEXT / PREV) */
  1827. .bx-wrapper .bx-prev {
  1828. left: 10px;
  1829. background: ~"url(../img/controls.png) no-repeat 0 -32px";
  1830. }
  1831. .bx-wrapper .bx-next {
  1832. right: 10px;
  1833. background: ~"url(../img/controls.png) no-repeat -43px -32px";
  1834. }
  1835. .bx-wrapper .bx-prev:hover {
  1836. background-position: 0 0;
  1837. }
  1838. .bx-wrapper .bx-next:hover {
  1839. background-position: -43px 0;
  1840. }
  1841. .bx-wrapper .bx-controls-direction a {
  1842. position: absolute;
  1843. top: 50%;
  1844. margin-top: -16px;
  1845. outline: 0;
  1846. width: 32px;
  1847. height: 32px;
  1848. text-indent: -9999px;
  1849. z-index: 9999;
  1850. }
  1851. .bx-wrapper .bx-controls-direction a.disabled {
  1852. display: none;
  1853. }
  1854. /* AUTO CONTROLS (START / STOP) */
  1855. .bx-wrapper .bx-controls-auto {
  1856. text-align: center;
  1857. }
  1858. .bx-wrapper .bx-controls-auto .bx-start {
  1859. display: block;
  1860. text-indent: -9999px;
  1861. width: 10px;
  1862. height: 11px;
  1863. outline: 0;
  1864. background: ~"url(../img/controls.png) -86px -11px no-repeat";
  1865. margin: 0 3px;
  1866. }
  1867. .bx-wrapper .bx-controls-auto .bx-start:hover,
  1868. .bx-wrapper .bx-controls-auto .bx-start.active {
  1869. background-position: -86px 0;
  1870. }
  1871. .bx-wrapper .bx-controls-auto .bx-stop {
  1872. display: block;
  1873. text-indent: -9999px;
  1874. width: 9px;
  1875. height: 11px;
  1876. outline: 0;
  1877. background: ~"url(../img/controls.png) -86px -44px no-repeat";
  1878. margin: 0 3px;
  1879. }
  1880. .bx-wrapper .bx-controls-auto .bx-stop:hover,
  1881. .bx-wrapper .bx-controls-auto .bx-stop.active {
  1882. background-position: -86px -33px;
  1883. }
  1884. /* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
  1885. .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  1886. text-align: left;
  1887. width: 80%;
  1888. }
  1889. .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  1890. right: 0;
  1891. width: 35px;
  1892. }
  1893. /* IMAGE CAPTIONS */
  1894. .bx-wrapper .bx-caption {
  1895. position: absolute;
  1896. bottom: 0;
  1897. left: 0;
  1898. background: #666\9;
  1899. background: rgba(80, 80, 80, 0.75);
  1900. width: 100%;
  1901. }
  1902. .bx-wrapper .bx-caption span {
  1903. color: #fff;
  1904. font-family: Arial;
  1905. display: block;
  1906. font-size: .85em;
  1907. padding: 10px;
  1908. }
  1909. /*--------------------------------------------------------------------------
  1910. + Main Menu Style
  1911. --------------------------------------------------------------------------*/
  1912. .mainmenu li.logo-wrapper a{
  1913. border-right: 1px solid #E8E8E8;
  1914. padding-left: 0;
  1915. padding-top: 0;
  1916. padding-bottom: 0;
  1917. }
  1918. .mainmenu-wrapper{
  1919. background-color: #FFF;
  1920. border-bottom: 4px solid @theme-color;
  1921. z-index: 4;
  1922. }
  1923. .mainmenu {
  1924. width: 100%;
  1925. /* general ul style */
  1926. ul {
  1927. margin: 0;
  1928. padding: 0;
  1929. list-style-type: none;
  1930. }
  1931. /* first level ul style */
  1932. >ul, .mainmenu-submenu-inner {
  1933. margin: 0 auto;
  1934. >li {
  1935. display: inline-block;
  1936. *display: inline;
  1937. >a{
  1938. font-size: 1.2em;
  1939. padding: 1.2em 1.5em;
  1940. color: #999;
  1941. display: inline-block;
  1942. text-decoration: none;
  1943. &:hover {
  1944. color: @theme-color;
  1945. text-decoration: none;
  1946. }
  1947. }
  1948. }
  1949. >li.active{
  1950. >a{
  1951. color: @theme-color;
  1952. font-weight: 600 !important;
  1953. }
  1954. }
  1955. >li.mainmenu-open a, li.mainmenu-open > a:hover {
  1956. color: #fff;
  1957. background: @theme-color;
  1958. }
  1959. }
  1960. /* sub-menu */
  1961. .mainmenu-submenu {
  1962. display: none;
  1963. position: absolute;
  1964. background: @theme-color;
  1965. width: 100%;
  1966. left: 0;
  1967. z-index: 999;
  1968. .translateZ(0);
  1969. .box-shadow(~"0 5px 5px rgba(0,0,0,0.4)");
  1970. }
  1971. .mainmenu-submenu-inner > div {
  1972. width: 33%;
  1973. float: left;
  1974. }
  1975. .mainmenu-submenu-inner:before, .mainmenu-submenu-inner:after {
  1976. content: " ";
  1977. display: table;
  1978. }
  1979. .mainmenu-submenu-inner:after {
  1980. clear: both;
  1981. }
  1982. .mainmenu-submenu-inner > div a {
  1983. line-height: 2em;
  1984. }
  1985. }
  1986. .mainmenu-open{
  1987. .mainmenu-submenu {
  1988. display: block;
  1989. padding-bottom: 3em;
  1990. }
  1991. }
  1992. .mainmenu-submenu{
  1993. h4 {
  1994. color: lighten(@theme-color, 30%);
  1995. padding: 1em 0 0.6em;
  1996. margin-left: 20px;
  1997. font-size: 160%;
  1998. font-weight: 300;
  1999. }
  2000. ul{
  2001. margin-left: 20px;
  2002. }
  2003. }
  2004. @media screen and (max-width: 979px) {
  2005. .mainmenu {
  2006. font-size: 0.8em;
  2007. }
  2008. .mainmenu-submenu{
  2009. font-size: 1.2em;
  2010. }
  2011. .mainmenu-submenu li, .mainmenu-submenu h4{
  2012. padding-left: 10px;
  2013. }
  2014. }
  2015. @media screen and (max-width: 479px) {
  2016. .mainmenu {
  2017. font-size: 120%;
  2018. border: none;
  2019. }
  2020. .mainmenu > ul,
  2021. .mainmenu .mainmenu-submenu-inner {
  2022. width: 100%;
  2023. padding: 0;
  2024. }
  2025. .mainmenu .mainmenu-submenu-inner {
  2026. padding: 0 1.5em;
  2027. font-size: 75%;
  2028. }
  2029. .mainmenu > ul > li {
  2030. display: block;
  2031. border-bottom: 4px solid @theme-color;
  2032. > a {
  2033. display: block;
  2034. padding: 1em 3em;
  2035. }
  2036. &:last-child{
  2037. border: none;
  2038. }
  2039. }
  2040. .mainmenu .mainmenu-submenu {
  2041. position: relative;
  2042. }
  2043. .mainmenu-submenu h4 {
  2044. padding-top: 0.6em;
  2045. }
  2046. .mainmenu .mainmenu-submenu-inner > div {
  2047. width: 100%;
  2048. float: none;
  2049. padding: 0;
  2050. }
  2051. }
  2052. /*--------------------------------------------------------------------------
  2053. + Extras Menu (Cart, Language, Login) Style
  2054. --------------------------------------------------------------------------*/
  2055. .menuextras{
  2056. font-size: 0.85em;
  2057. height: 30px;
  2058. ul{
  2059. margin: 0;
  2060. padding: 0;
  2061. list-style-type: none;
  2062. float: right;
  2063. padding: 3px 0;
  2064. }
  2065. li{
  2066. float: left;
  2067. padding: 0 8px;
  2068. }
  2069. .extras{
  2070. li{
  2071. padding: 0 8px;
  2072. a{
  2073. color: #333;
  2074. &:hover{
  2075. color: #333;
  2076. text-decoration: none;
  2077. }
  2078. }
  2079. }
  2080. .shopping-cart-items{
  2081. i{
  2082. color: #333;
  2083. }
  2084. }
  2085. }
  2086. .choose-country{
  2087. .dropdown-menu{
  2088. background-color: #222;
  2089. background-color: fade(#222, 80%);
  2090. margin-top: 5px;
  2091. li{
  2092. float: none;
  2093. a{
  2094. color: #fff;
  2095. padding-left: 3px;
  2096. &:hover{
  2097. color: #fff;
  2098. background-color: #333 !important;
  2099. }
  2100. }
  2101. }
  2102. }
  2103. }
  2104. }
  2105. /*--------------------------------------------------------------------------
  2106. + Buttons Style
  2107. --------------------------------------------------------------------------*/
  2108. .btn {
  2109. border: 1px solid @theme-color;
  2110. .border-radius(2px);
  2111. color: #FFFFFF;
  2112. cursor: pointer;
  2113. display: inline-block;
  2114. text-transform: none;
  2115. .transition(~"all .25s ease");
  2116. text-align: center;
  2117. background: none repeat scroll 0 0 @theme-color;
  2118. text-shadow: none;
  2119. box-shadow: none;
  2120. color: #FFF;
  2121. &:hover {
  2122. background: none repeat scroll 0 0 #3b3c41;
  2123. color: #FFF;
  2124. text-decoration: none;
  2125. border: 1px solid #3b3c41;
  2126. }
  2127. white-space: nowrap;
  2128. .caret{
  2129. border-top: 4px solid #FFF;
  2130. }
  2131. }
  2132. .btn-micro {
  2133. padding: 1px 8px;
  2134. font-size: 10px;
  2135. }
  2136. .btn-grey{
  2137. border: 1px solid darken(#E7E7E7, 10%);
  2138. color: #333;
  2139. background: none repeat scroll 0 0 #E7E7E7;
  2140. &:hover {
  2141. background: none repeat scroll 0 0 darken(#E7E7E7, 10%);
  2142. color: #333;
  2143. text-decoration: none;
  2144. border: 1px solid darken(#E7E7E7, 10%);
  2145. }
  2146. .caret{
  2147. border-top: 4px solid #333;
  2148. }
  2149. }
  2150. .btn-blue{
  2151. border: 1px solid darken(#4F8DB3, 10%);
  2152. color: #FFF;
  2153. background: none repeat scroll 0 0 #4F8DB3;
  2154. &:hover {
  2155. background: none repeat scroll 0 0 #3b3c41;
  2156. color: #FFF;
  2157. text-decoration: none;
  2158. border: 1px solid #3b3c41;
  2159. }
  2160. }
  2161. .btn-orange{
  2162. border: 1px solid darken(#FF7000, 10%);
  2163. color: #FFF;
  2164. background: none repeat scroll 0 0 #FF7000;
  2165. &:hover {
  2166. background: none repeat scroll 0 0 #3b3c41;
  2167. color: #FFF;
  2168. text-decoration: none;
  2169. border: 1px solid #3b3c41;
  2170. }
  2171. }
  2172. .btn-green{
  2173. border: 1px solid darken(#6E8023, 10%);
  2174. color: #FFF;
  2175. background: none repeat scroll 0 0 #6E8023;
  2176. &:hover {
  2177. background: none repeat scroll 0 0 #3b3c41;
  2178. color: #FFF;
  2179. text-decoration: none;
  2180. border: 1px solid #3b3c41;
  2181. }
  2182. }
  2183. .btn-red{
  2184. border: 1px solid darken(#DA1111, 10%);
  2185. color: #FFF;
  2186. background: none repeat scroll 0 0 #DA1111;
  2187. &:hover {
  2188. background: none repeat scroll 0 0 #3b3c41;
  2189. color: #FFF;
  2190. text-decoration: none;
  2191. border: 1px solid #3b3c41;
  2192. }
  2193. }
  2194. .btn-group.open .btn.dropdown-toggle{
  2195. background: none repeat scroll 0 0 #3b3c41;
  2196. color: #FFF;
  2197. }
  2198. .dropdown.open a.dropdown-toggle .caret{
  2199. border-top: 4px solid #FFF;
  2200. }