Advertisement
Guest User

not-working-menubar

a guest
Mar 12th, 2013
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.26 KB | None | 0 0
  1. /*
  2. Theme Name: Pitch
  3. Theme URI: http://siteorigin.com/theme/pitch/
  4. Author: SiteOrigin
  5. Author URI: http://siteorigin.com/
  6. Version: 1.3.1
  7. License: GPL 2.0
  8. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  9. Description: Pitch is a simple, minimal business and portfolio theme. It uses custom post types to make it easy to add your content. Pitch also features a big bold slider to put your work front and center.
  10. Tags: gray, two-columns, fixed-width, custom-background, custom-menu, featured-images, theme-options, threaded-comments, translation-ready
  11. */
  12.  
  13. /* =Reset
  14. -------------------------------------------------------------- */
  15.  
  16. html,
  17. body,
  18. div,
  19. span,
  20. applet,
  21. object,
  22. iframe,
  23. h1,
  24. h2,
  25. h3,
  26. h4,
  27. h5,
  28. h6,
  29. p,
  30. blockquote,
  31. pre,
  32. a,
  33. abbr,
  34. acronym,
  35. address,
  36. big,
  37. cite,
  38. code,
  39. del,
  40. dfn,
  41. em,
  42. img,
  43. ins,
  44. kbd,
  45. q,
  46. s,
  47. samp,
  48. small,
  49. strike,
  50. strong,
  51. sub,
  52. sup,
  53. tt,
  54. var,
  55. b,
  56. u,
  57. i,
  58. center,
  59. dl,
  60. dt,
  61. dd,
  62. ol,
  63. ul,
  64. li,
  65. fieldset,
  66. form,
  67. label,
  68. legend,
  69. table,
  70. caption,
  71. tbody,
  72. tfoot,
  73. thead,
  74. tr,
  75. th,
  76. td,
  77. article,
  78. aside,
  79. canvas,
  80. details,
  81. embed,
  82. figure,
  83. figcaption,
  84. footer,
  85. header,
  86. hgroup,
  87. menu,
  88. nav,
  89. output,
  90. ruby,
  91. section,
  92. summary,
  93. time,
  94. mark,
  95. audio,
  96. video {
  97. border: 0;
  98. font: inherit;
  99. font-size: 100%;
  100. margin: 0;
  101. padding: 0;
  102. vertical-align: baseline;
  103. }
  104.  
  105. /* HTML5 display-role reset for older browsers */
  106.  
  107. article,
  108. aside,
  109. details,
  110. figcaption,
  111. figure,
  112. footer,
  113. header,
  114. hgroup,
  115. menu,
  116. nav,
  117. section {
  118. display: block;
  119. }
  120.  
  121. body {
  122. line-height: 1;
  123. }
  124.  
  125. ol,
  126. ul {
  127. list-style: none;
  128. }
  129.  
  130. blockquote,
  131. q {
  132. quotes: none;
  133. }
  134.  
  135. blockquote:before,
  136. blockquote:after,
  137. q:before,
  138. q:after {
  139. content: '';
  140. content: none;
  141. }
  142.  
  143. table {
  144. border-collapse: collapse;
  145. border-spacing: 0;
  146. }
  147.  
  148. /* =General
  149. -------------------------------------------------------------- */
  150.  
  151. body {
  152. background: #f4f4f4;
  153. font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  154. font-size: 12px;
  155. }
  156.  
  157. .container {
  158. position: relative;
  159. width: 960px;
  160.  
  161. display: block;
  162. margin: 0 auto;
  163. }
  164.  
  165. .clear {
  166. clear: both;
  167. }
  168.  
  169. .separator {
  170. height: 7px;
  171.  
  172. background: url(images/pattern.png) repeat;
  173. margin: 20px 0;
  174. }
  175.  
  176. /* =Internet Explorer Fixes
  177. -------------------------------------------------------------- */
  178.  
  179. /* =Top Bar
  180. -------------------------------------------------------------- */
  181.  
  182. #topbar {
  183. background: #2c2c2c;
  184. box-shadow: 0 6px 0 rgba(0,0,0,0.05);
  185. font-size: 11px;
  186. padding: 15px 0;
  187. }
  188.  
  189. #topbar-menu {
  190. float: right;
  191. text-align: right;
  192. word-wrap: break-word;
  193. }
  194.  
  195. #topbar-menu li.menu-item {
  196. display: block;
  197. float: left;
  198. margin-left: 25px;
  199. }
  200.  
  201. #topbar-menu li.menu-item a {
  202. color: #f4f4f4;
  203. text-decoration: none;
  204. }
  205.  
  206. /* =Top Bar : Topbar Dropdown
  207. -------------------------------------------------------------- */
  208.  
  209. #topbar-menu li.menu-item {
  210. position: relative;
  211.  
  212. }
  213.  
  214. ul#topbar-menu li.menu-item a {
  215. }
  216.  
  217. ul#topbar-menu ul.sub-menu {
  218. position: absolute;
  219. top: 1em;
  220. left: 50%;
  221.  
  222. border: none;
  223. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  224. display: none;
  225. margin-left: -60px;
  226. min-width: 120px;
  227. z-index: 99;
  228. }
  229.  
  230. ul#topbar-menu li:hover ul.sub-menu {
  231. display: block;
  232. padding-top: 15px;
  233. }
  234.  
  235. ul#topbar-menu ul.sub-menu .sub-wrapper {
  236. position: relative;
  237.  
  238. background: #1c1c1c;
  239. padding: 4px 0;
  240. text-align: center;
  241. }
  242.  
  243. ul#topbar-menu ul.sub-menu .sub-wrapper .pointer {
  244. position: absolute;
  245. top: -8px;
  246. left: 50%;
  247. width: 18px;
  248. height: 8px;
  249.  
  250. background-image: url(../images/sprites/topbar-pointer.png);
  251. margin-left: -9px;
  252. }
  253.  
  254. ul#topbar-menu ul.sub-menu li {
  255. float: none;
  256. margin-left: 0;
  257. padding: 8px 0;
  258. }
  259.  
  260. ul#topbar-menu ul.sub-menu li a {
  261. white-space: nowrap;
  262. }
  263.  
  264. /* =Logo
  265. -------------------------------------------------------------- */
  266.  
  267. #logo {
  268.  
  269. width: 200px;
  270. float:left;
  271. position: absolute;
  272. margin-top:40px;
  273. margin-left:200px;
  274. background:url(images/logo.png) no-repeat ;
  275. /*
  276.  
  277. width: 100%;
  278.  
  279. margin: 35px 0;
  280. */
  281. }
  282.  
  283. #logo a {
  284. text-decoration: none;
  285. }
  286.  
  287. #logo h1 {
  288. color: #5e5e5e;
  289. display: inline-block;
  290. font-family: 'Maven Pro', sans-serif;
  291. font-size: 48px;
  292. letter-spacing: -2px;
  293. text-indent:-9999px;
  294. }
  295.  
  296. /* =Logo : Search Bar
  297. --------------------------------------------------------------
  298.  
  299. #logo #searchform {
  300. position: absolute;
  301. top: 50%;
  302. right: 0;
  303.  
  304. margin-top: 60px;
  305.  
  306. }
  307.  
  308. #logo #searchform #s {
  309. width: 200px;
  310.  
  311. background: rgb(255,255,255);
  312. background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(249,249,249,1) 100%);
  313. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(249,249,249,1)));
  314. background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(249,249,249,1) 100%);
  315. background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(249,249,249,1) 100%);
  316. background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(249,249,249,1) 100%);
  317. background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(249,249,249,1) 100%);
  318. border: 1px solid #E2E2E2;
  319. -webkit-border-radius: 4px;
  320. -moz-border-radius: 4px;
  321. border-radius: 4px;
  322. box-shadow: inset 1px 2px 3px rgba(0,0,0,0.06);
  323. color: #707070;
  324. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 );
  325. font: italic 11px 'Droid Serif', serif;
  326. outline: 2px #FAFAFA solid;
  327. padding: 8px 10px;
  328. }
  329.  
  330. #logo #searchform #s:focus {
  331. outline: none;
  332. }
  333.  
  334. #logo #searchform #searchsubmit {
  335. display: none;
  336. }
  337.  
  338. /* =Main Menu
  339. -------------------------------------------------------------- */
  340.  
  341. #mainmenu {
  342. margin: 35px 35px 5px 0px;
  343. word-wrap: break-word;
  344.  
  345. width: 70%;
  346. float: right;
  347.  
  348. padding-left: 100px;
  349. }
  350.  
  351. ul#mainmenu-menu {
  352. width: 760px;
  353. position: relative;
  354. background:white;
  355. background: rgb(247,247,247);
  356. background: -moz-linear-gradient(top, rgba(247,247,247,1) 0%, rgba(244,244,244,1) 100%);
  357. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(244,244,244,1)));
  358. background: -webkit-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  359. background: -o-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  360. background: -ms-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  361. background: linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  362. border: 1px solid #E2E2E2;
  363. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=0 );
  364.  
  365. float: right;
  366. margin-right: 160px;
  367. }
  368.  
  369. ul#mainmenu-menu li.menu-item {
  370. position: relative;
  371.  
  372. border-right: 1px solid #E2E2E2;
  373. display: block;
  374. float: left;
  375. font-size: 10px;
  376. font-weight: bold;
  377.  
  378. }
  379.  
  380. ul#mainmenu-menu li.menu-item a {
  381. color: #5e5e5e;
  382. display: block;
  383. padding: 10px 60px;
  384. text-decoration: none;
  385. }
  386.  
  387. ul#mainmenu-menu li.menu-item a:hover {
  388. background: #F9F9F9;
  389. }
  390.  
  391. /*--------------------------------
  392. ul#mainmenu-menu > li.menu-item:first-child {
  393. background:url(images/logo.png) no-repeat ;
  394. text-indent:-9999px;
  395. width:200px;
  396. border:none;
  397. }
  398. ul#mainmenu-menu > li.menu-item:first-child a:hover {
  399. background:none;
  400. }
  401. */
  402.  
  403. /* =Main Menu : Scaled Menu
  404. -------------------------------------------------------------- */
  405.  
  406. #mainmenu.scaled .container > div {
  407. width: 100%;
  408. height: 52px;
  409.  
  410. display: table;
  411. }
  412.  
  413. #mainmenu.scaled ul#mainmenu-menu {
  414. height: 52px;
  415.  
  416. display: table-row;
  417. }
  418.  
  419. #mainmenu.scaled li.menu-item {
  420. width: auto;
  421. height: 52px;
  422.  
  423. border: none;
  424. display: table-cell;
  425. float: none;
  426. }
  427.  
  428. #mainmenu.scaled li.menu-item a {
  429. border: 1px solid #E2E2E2;
  430. border-width: 1px 1px 1px 0;
  431. text-align: center;
  432. }
  433.  
  434. #mainmenu.scaled li.menu-item:first-child a {
  435. border-left-width: 1px;
  436. }
  437.  
  438. #mainmenu.scaled ul#mainmenu-menu ul.sub-menu li {
  439. border-width: 0;
  440. display: block;
  441. }
  442.  
  443. #mainmenu.scaled ul#mainmenu-menu ul.sub-menu a {
  444. border: none;
  445. }
  446.  
  447. /* =Main Menu : Main Dropdown
  448. -------------------------------------------------------------- */
  449.  
  450. ul#mainmenu-menu li.menu-item a {
  451. height: 52px;
  452.  
  453. -webkit-box-sizing: border-box;
  454. -moz-box-sizing: border-box;
  455. box-sizing: border-box;
  456. color: #5e5e5e;
  457. display: block;
  458. padding: 20px 40px;
  459. text-decoration: none;
  460. }
  461.  
  462. ul#mainmenu-menu ul.sub-menu {
  463. position: absolute;
  464. top: 52px;
  465. left: 0px;
  466. width: 100%;
  467.  
  468. background: white;
  469. border: none;
  470. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  471. display: none;
  472. z-index: 99;
  473. }
  474.  
  475. ul#mainmenu-menu li:hover ul.sub-menu {
  476. display: block;
  477. }
  478.  
  479. ul#mainmenu-menu ul.sub-menu li {
  480. border: none;
  481. display: block;
  482. float: none;
  483. font-weight: normal;
  484. }
  485.  
  486. ul#mainmenu-menu ul.sub-menu li a {
  487. height: auto;
  488.  
  489. line-height: 15px;
  490. padding: 15px 15px 15px 15px;
  491. }
  492.  
  493. /* =Slider
  494. -------------------------------------------------------------- */
  495.  
  496. #slider {
  497. margin: 35px 0;
  498. margin-bottom:10px;
  499. }
  500.  
  501. /* =Slider : Slides
  502. -------------------------------------------------------------- */
  503.  
  504. #slider .slides {
  505. line-height: 0;
  506. }
  507.  
  508. #slider .slides img {
  509. width: 100%;
  510.  
  511. }
  512.  
  513. /* =Slider : Indicators
  514. -------------------------------------------------------------- */
  515.  
  516. #slider .indicators-wrapper {
  517. width: 100%;
  518.  
  519. border-collapse: collapse;
  520. display: none;
  521. }
  522.  
  523. #slider .indicators {
  524. background: #f1f1f1;
  525. display: table-row;
  526. }
  527.  
  528. #slider .indicators .indicator {
  529. height: 100%;
  530.  
  531. border-bottom: 1px solid #c6c6c6;
  532. border-top: 3px solid #c9c9c9;
  533. cursor: pointer;
  534. display: table-cell;
  535. }
  536.  
  537. #slider .indicators .indicator .indicator-container {
  538. position: relative;
  539.  
  540. padding: 20px 25px;
  541. }
  542.  
  543. #slider .indicators .indicator.active {
  544. border-top-color: #bbbbbb;
  545. }
  546.  
  547. #slider .indicators .indicator.active .indicator-container {
  548. background-color: #ebebeb;
  549. }
  550.  
  551. #slider .indicators .indicator .pointer {
  552. position: absolute;
  553. top: -8px;
  554. left: 50%;
  555. width: 10px;
  556. height: 5px;
  557.  
  558. background: url(images/sprites/slide-active-pointer.png) no-repeat;
  559. margin-left: -10px;
  560. opacity: 0;
  561. visibility: hidden;
  562. z-index: 1000;
  563. }
  564.  
  565. #slider .indicators .indicator.active .pointer {
  566. opacity: 1;
  567. visibility: visible;
  568. }
  569.  
  570. /* CSS3 Animations */
  571.  
  572. #slider .indicators .indicator,
  573. #slider .indicators .indicator .pointer {
  574. -webkit-transition: all 0.3s ease-in-out;
  575. -moz-transition: all 0.3s ease-in-out;
  576. -o-transition: all 0.3s ease-in-out;
  577. -ms-transition: all 0.3s ease-in-out;
  578. transition: all 0.3s ease-in-out;
  579. }
  580.  
  581. #slider .indicators .indicator h4 {
  582. color: #5e5e5e;
  583. font: bold 13px 'Droid Sans', sans-serif;
  584. }
  585.  
  586. #slider .indicators .indicator p {
  587. color: #777777;
  588. font: italic 11px 'Droid Serif', serif;
  589. margin-top: 2px;
  590. min-height: 1em;
  591. }
  592.  
  593. /* =Slider : Indicators : Indicator Widths
  594. -------------------------------------------------------------- */
  595.  
  596. #slider .indicator-group-2 {
  597. width: 50%;
  598.  
  599. }
  600.  
  601. #slider .indicator-group-3 {
  602. width: 33.3333%;
  603.  
  604. }
  605.  
  606. #slider .indicator-group-4 {
  607. width: 25%;
  608.  
  609. }
  610.  
  611. #slider .indicator-group-5 {
  612. width: 20%;
  613.  
  614. }
  615.  
  616. #slider .indicator-group-6 {
  617. width: %16.6667;
  618.  
  619. }
  620.  
  621. /* =Call To Action
  622. -------------------------------------------------------------- */
  623.  
  624. #call-to-action {
  625. margin: 35px 0;
  626. }
  627.  
  628. #call-to-action .container {
  629. background: url(images/pattern.png) repeat;
  630. -moz-box-sizing: border-box;
  631. -webkit-box-sizing: border-box;
  632. box-sizing: border-box;
  633. padding: 25px;
  634. }
  635.  
  636. #call-to-action h3 {
  637. color: #555555;
  638. font: 23px 'Droid Sans', sans-serif;
  639. }
  640.  
  641. #call-to-action a {
  642. position: absolute;
  643. top: 50%;
  644. right: 25px;
  645.  
  646. background: #474747;
  647. -webkit-border-radius: 3px;
  648. -moz-border-radius: 3px;
  649. border-radius: 3px;
  650. color: #FFF;
  651. display: block;
  652. font: italic 12px 'Droid Serif', serif;
  653. margin-top: -17px;
  654. padding: 10px 40px;
  655. text-decoration: none;
  656. text-shadow: 0 1px 0 #000;
  657. }
  658.  
  659. /* =Feature List
  660. -------------------------------------------------------------- */
  661.  
  662. #site-features {
  663. }
  664.  
  665. #site-features .feature-list {
  666. margin: 0 -15px;
  667. }
  668.  
  669. #site-features .feature {
  670. width: 33.3333%;
  671.  
  672. -moz-box-sizing: border-box;
  673. -webkit-box-sizing: border-box;
  674. box-sizing: border-box;
  675. float: left;
  676. padding: 0 15px;
  677. padding-bottom: 20px;
  678. }
  679.  
  680. #site-features .feature-lastrow {
  681. padding-bottom: 0;
  682. }
  683.  
  684. #site-features .feature .icon {
  685. position: relative;
  686. width: 40px;
  687. height: 40px;
  688.  
  689. background: url(images/sprites/feature.png) no-repeat;
  690. float: left;
  691. }
  692.  
  693. #site-features .feature .icon img {
  694. position: absolute;
  695. top: 50%;
  696. left: 50%;
  697.  
  698. margin: -8px 0 0 -8px;
  699. }
  700.  
  701. #site-features .feature h3 {
  702. color: #3b3b3b;
  703. font: bold 16px 'Droid Sans', sans-serif;
  704. margin: 0 0 0 55px;
  705. padding-top: 10px;
  706. }
  707.  
  708. #site-features .feature h3 a {
  709. color: #3b3b3b;
  710. text-decoration: none;
  711. }
  712.  
  713. #site-features .feature p {
  714. color: #474747;
  715. font-size: 12px;
  716. line-height: 1.5em;
  717. margin-top: 20px;
  718. }
  719.  
  720. /* =Home Loop
  721. -------------------------------------------------------------- */
  722.  
  723. .home-loop {
  724. margin: 50px 0;
  725. }
  726.  
  727. .home-loop .container {
  728. }
  729.  
  730. /* =Home Loop : Nav
  731. -------------------------------------------------------------- */
  732.  
  733. .home-loop .nav {
  734. float: right;
  735. }
  736.  
  737. .home-loop .nav a {
  738. width: 24px;
  739. height: 21px;
  740.  
  741. display: inline-block;
  742. overflow: hidden;
  743. text-indent: -999px;
  744. }
  745.  
  746. .home-loop .nav a.next {
  747. background: url(images/sprites/home-posts-nav-next.png) no-repeat;
  748. }
  749.  
  750. .home-loop .nav a.prev {
  751. background: url(images/sprites/home-posts-nav-prev.png) no-repeat;
  752. }
  753.  
  754. .home-loop h3 {
  755. color: #3b3b3b;
  756. font: 14px "Droid Sans", sans-serif;
  757. margin-bottom: 30px;
  758. text-indent: -9999px;
  759. }
  760.  
  761. .home-loop .post-list {
  762. width: 9999px;
  763.  
  764. overflow: hidden;
  765. }
  766.  
  767. .home-loop .post-list-wrapper {
  768. margin: 0 -10px;
  769. overflow: hidden;
  770. }
  771.  
  772. /* =Home Loop : Post
  773. -------------------------------------------------------------- */
  774.  
  775. .home-loop .post-list li.post {
  776. width: 225px;
  777.  
  778. float: left;
  779. padding: 0 10px;
  780. }
  781.  
  782. .home-loop .post-list li.post a {
  783. text-decoration: none;
  784. }
  785.  
  786. .home-loop .post-list li.post img {
  787. margin-bottom: 13px;
  788. }
  789.  
  790. .home-loop .post-list li.post .placeholder {
  791. width: 225px;
  792. height: 150px;
  793.  
  794. background: #E9E9E9;
  795. display: block;
  796. margin-bottom: 13px;
  797. }
  798.  
  799. .home-loop .post-list li.post.type-client img {
  800. width: 100% !important;
  801. height: auto;
  802.  
  803. box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  804. }
  805.  
  806. .home-loop .post-list li.post h4 {
  807. color: #3b3b3b;
  808. font: bold 12px 'Droid Sans', sans-serif;
  809. margin-bottom: 9px;
  810. text-align: center;
  811. }
  812.  
  813. .home-loop .post-list li.post p {
  814. color: #777777;
  815. font: italic 12px 'Droid Serif', serif;
  816. line-height: 1.4em;
  817. }
  818.  
  819. /* =Blog Post Loop
  820. -------------------------------------------------------------- */
  821.  
  822. #loop {
  823. width: 620px;
  824.  
  825. float: left;
  826. }
  827.  
  828. #loop.loop-posts {
  829. }
  830.  
  831. #loop.loop-posts .post,
  832. #loop.loop-posts > div {
  833. margin-bottom: 60px;
  834. }
  835.  
  836. #loop.loop-posts .sticky {
  837. }
  838.  
  839. #loop.loop-posts .post-info {
  840. width: 120px;
  841.  
  842. float: left;
  843. }
  844.  
  845. /* =Blog Post Loop : Date
  846. -------------------------------------------------------------- */
  847.  
  848. #loop.loop-posts .post-info .date {
  849. background-image: url(images/pattern.png);
  850. color: #474747;
  851. font-family: 'Droid Sans', sans-serif;
  852. font-weight: bold;
  853. margin-bottom: 20px;
  854. padding: 15px 20px;
  855. }
  856.  
  857. #loop.loop-posts .post-info .date .day {
  858. font-size: 30px;
  859. }
  860.  
  861. #loop.loop-posts .post-info .date .month-year {
  862. float: right;
  863. line-height: 1.25em;
  864. padding-top: 1px;
  865. }
  866.  
  867. #loop.loop-posts .post-info .extras {
  868. font-size: 11px;
  869. text-align: right;
  870. }
  871.  
  872. #loop.loop-posts .post-info .extras div {
  873. margin-bottom: 8px;
  874. }
  875.  
  876. #loop.loop-posts .post-info .extras a {
  877. color: #474747;
  878. text-decoration: none;
  879. }
  880.  
  881. #loop.loop-posts .post-info .extras a:hover {
  882. text-decoration: underline;
  883. }
  884.  
  885. #loop.loop-posts .post-main {
  886. margin-left: 160px;
  887. }
  888.  
  889. #loop.loop-posts .post-main .content {
  890. color: #5e5e5e;
  891. line-height: 1.5em;
  892. }
  893.  
  894. #loop.loop-posts .post-main h2.post-title {
  895. font: bold 14px 'Droid Sans', sans-serif;
  896. margin: 15px 0;
  897. }
  898.  
  899. #loop.loop-posts .post-main h2.post-title a {
  900. color: #474747;
  901. text-decoration: none;
  902. }
  903.  
  904. #loop.loop-posts .post-main .read-more {
  905. margin-top: 25px;
  906. }
  907.  
  908. #loop.loop-posts .post-main .read-more a {
  909. color: #303030;
  910. font-size: 11px;
  911. font-weight: bold;
  912. text-decoration: none;
  913. }
  914.  
  915. #loop.loop-posts .post-main .read-more a i {
  916. width: 6px;
  917. height: 10px;
  918.  
  919. background: url(images/sprites/read-more-arrow.png) no-repeat;
  920. display: inline-block;
  921. margin: 0 0 -1px 5px;
  922. }
  923.  
  924. /* =Archive
  925. -------------------------------------------------------------- */
  926.  
  927. h1#archive-title {
  928. color: #474747;
  929. font-family: 'Droid Sans', sans-serif;
  930. font-size: 25px;
  931. margin-bottom: 25px;
  932. }
  933.  
  934. /* =Archive : Navigation
  935. -------------------------------------------------------------- */
  936.  
  937. /* =Project Archive
  938. -------------------------------------------------------------- */
  939.  
  940. #projects {
  941. margin: 0 -10px;
  942. }
  943.  
  944. #projects .project {
  945. width: 245px;
  946.  
  947. -moz-box-sizing: border-box;
  948. -webkit-box-sizing: border-box;
  949. box-sizing: border-box;
  950. float: left;
  951. margin-bottom: 20px;
  952. padding: 0 10px;
  953. }
  954.  
  955. #projects .project .wrapper {
  956. position: relative;
  957.  
  958. }
  959.  
  960. #projects .project a.image {
  961. background: #F0F0F0 url(images/loader.gif) no-repeat center center;
  962. display: block;
  963. line-height: 0;
  964. }
  965.  
  966. #projects .project .overlay {
  967. position: absolute;
  968. top: 0;
  969. left: 0;
  970. width: 100%;
  971. height: 100%;
  972.  
  973. background: #000;
  974. display: block;
  975. opacity: 0;
  976. visibility: hidden;
  977. }
  978.  
  979. #projects .project .info {
  980. top: 0;
  981. left: 0;
  982. width: 100%;
  983. height: 100%;
  984.  
  985. display: block;
  986. opacity: 0;
  987. visibility: hidden;
  988. }
  989.  
  990. #projects .project .overlay {
  991. -webkit-transition: all 0.6s ease-in-out;
  992. -moz-transition: all 0.6s ease-in-out;
  993. -o-transition: all 0.6s ease-in-out;
  994. -ms-transition: all 0.6s ease-in-out;
  995. transition: all 0.6s ease-in-out;
  996. }
  997.  
  998. #projects .project .info {
  999. -webkit-transition: all 0.4s ease-in-out;
  1000. -moz-transition: all 0.4s ease-in-out;
  1001. -o-transition: all 0.4s ease-in-out;
  1002. -ms-transition: all 0.4s ease-in-out;
  1003. transition: all 0.4s ease-in-out;
  1004. }
  1005.  
  1006. #projects .project:hover .overlay {
  1007. opacity: 0.7;
  1008. visibility: visible;
  1009. }
  1010.  
  1011. #projects .project:hover .info {
  1012. opacity: 0.9;
  1013. visibility: visible;
  1014. }
  1015.  
  1016. #projects .project .info h3 {
  1017. position: absolute;
  1018. top: 15px;
  1019. left: 0;
  1020.  
  1021. background: #000;
  1022. color: #CCC;
  1023. display: inline-block;
  1024. font: italic 16px 'Droid Serif', serif;
  1025. padding: 10px;
  1026. }
  1027.  
  1028. #projects .project .info p {
  1029. position: absolute;
  1030. right: 0;
  1031. bottom: 15px;
  1032.  
  1033. background: #000;
  1034. color: #CCC;
  1035. display: inline-block;
  1036. font: normal normal 14px 'Droid Sans', sans-serif;
  1037. padding: 10px;
  1038. }
  1039.  
  1040. /* =Post Single
  1041. -------------------------------------------------------------- */
  1042.  
  1043. #post-single {
  1044. margin: 35px 0;
  1045. }
  1046.  
  1047. #post-single .separator.first {
  1048. margin-top: 0px;
  1049. }
  1050.  
  1051. #post-single .separator.light {
  1052. opacity: 0.4;
  1053. }
  1054.  
  1055. #post-single h1.post-title {
  1056. color: #474747;
  1057. font: 26px 'Droid Sans', sans-serif;
  1058. margin-bottom: 25px;
  1059. }
  1060.  
  1061. /* =Post Single : General Content
  1062. -------------------------------------------------------------- */
  1063.  
  1064. .entry-content {
  1065. color: #555;
  1066. line-height: 1.5em;
  1067. }
  1068.  
  1069. .entry-content p {
  1070. margin: 1.5em 0;
  1071. }
  1072.  
  1073. .entry-content ol {
  1074. list-style-type: decimal;
  1075. padding-left: 1.5em;
  1076. }
  1077.  
  1078. .entry-content ul {
  1079. list-style-type: disc;
  1080. padding-left: 1.5em;
  1081. }
  1082.  
  1083. .entry-content ul li,
  1084. .entry-content ol li {
  1085. line-height: 1.5em;
  1086. }
  1087.  
  1088. .entry-content a {
  1089. color: #1e7cd2;
  1090. }
  1091.  
  1092. .entry-content a:hover {
  1093. color: #4593ec;
  1094. }
  1095.  
  1096. .entry-content strong,
  1097. .entry-content b {
  1098. color: #444;
  1099. font-weight: bold;
  1100. }
  1101.  
  1102. .entry-content em,
  1103. .entry-content i {
  1104. font-style: italic;
  1105. }
  1106.  
  1107. .entry-content blockquote {
  1108. font-family: 'Droid Serif', serif;
  1109. font-style: italic;
  1110. padding-left: 2em;
  1111. }
  1112.  
  1113. .entry-content blockquote cite {
  1114. display: block;
  1115. font-family: 'Droid Sans', sans-serif;
  1116. font-weight: bold;
  1117. margin-top: 1em;
  1118. }
  1119.  
  1120. .entry-content sup,
  1121. .entry-content sub {
  1122. position: relative;
  1123. height: 0;
  1124.  
  1125. font-size: 75%;
  1126. line-height: 0;
  1127. vertical-align: baseline;
  1128. }
  1129.  
  1130. .entry-content sup {
  1131. bottom: 1ex;
  1132.  
  1133. }
  1134.  
  1135. .entry-content sub {
  1136. top: .5ex;
  1137.  
  1138. }
  1139.  
  1140. .entry-content .flexslider {
  1141. margin: 1.5em 0;
  1142. }
  1143.  
  1144. /* =Post Single : General Content : Definition list
  1145. -------------------------------------------------------------- */
  1146.  
  1147. .entry-content dl {
  1148. margin-top: 1.5em;
  1149. }
  1150.  
  1151. .entry-content dl dt {
  1152. display: block;
  1153. font-family: 'Droid Sans', sans-serif;
  1154. font-weight: bold;
  1155. margin-bottom: 0.5em;
  1156. }
  1157.  
  1158. .entry-content dl dd {
  1159. margin-bottom: 1em;
  1160. padding-left: 1.5em;
  1161. }
  1162.  
  1163. /* =Post Single : General Content : Table
  1164. -------------------------------------------------------------- */
  1165.  
  1166. #post-single table {
  1167. width: 100%;
  1168.  
  1169. }
  1170.  
  1171. /* =Post Single : General Content : Images
  1172. -------------------------------------------------------------- */
  1173.  
  1174. .entry-content img {
  1175. height: auto;
  1176.  
  1177. max-width: 100%;
  1178. }
  1179.  
  1180. .alignnone {
  1181. }
  1182.  
  1183. .aligncenter,
  1184. div.aligncenter {
  1185. display: block;
  1186. margin: 5px auto 5px auto;
  1187. }
  1188.  
  1189. .alignright {
  1190. float: right;
  1191. margin: 5px 0 20px 20px;
  1192. }
  1193.  
  1194. .alignleft {
  1195. float: left;
  1196. margin: 5px 20px 20px 0;
  1197. }
  1198.  
  1199. .aligncenter {
  1200. display: block;
  1201. margin: 5px auto;
  1202. }
  1203.  
  1204. a img.alignright {
  1205. float: right;
  1206. margin: 5px 0px 20px 20px;
  1207. }
  1208.  
  1209. a img.alignnone {
  1210. }
  1211.  
  1212. a img.alignleft {
  1213. float: left;
  1214. margin: 5px 20px 20px 0;
  1215. }
  1216.  
  1217. a img.aligncenter {
  1218. display: block;
  1219. margin-left: auto;
  1220. margin-right: auto;
  1221. }
  1222.  
  1223. .wp-caption {
  1224. background: #fff;
  1225. border: 1px solid #f0f0f0;
  1226. max-width: 96%; /* Image does not overflow the content area */
  1227. padding: 5px 3px;
  1228. text-align: center;
  1229. }
  1230.  
  1231. .wp-caption.alignnone {
  1232. margin: 5px 20px 20px 0;
  1233. }
  1234.  
  1235. .wp-caption.alignleft {
  1236. margin: 5px 20px 20px 0;
  1237. }
  1238.  
  1239. .wp-caption.alignright {
  1240. margin: 5px 0 20px 20px;
  1241. }
  1242.  
  1243. .wp-caption img {
  1244. width: auto;
  1245. height: auto;
  1246.  
  1247. border: 0 none;
  1248. margin: 0;
  1249. max-width: 98.5%;
  1250. padding: 0;
  1251. }
  1252.  
  1253. .wp-caption p.wp-caption-text {
  1254. font-size: 11px;
  1255. line-height: 17px;
  1256. margin: 0;
  1257. padding: 0 4px;
  1258. }
  1259.  
  1260. /* =Post Single : General Content : Headings
  1261. -------------------------------------------------------------- */
  1262.  
  1263. .entry-content h1,
  1264. .entry-content h2,
  1265. .entry-content h3,
  1266. .entry-content h4,
  1267. .entry-content h5,
  1268. .entry-content h6 {
  1269. color: #333;
  1270. font-family: 'Droid Sans', sans-serif;
  1271. margin: 1.5em 0;
  1272. }
  1273.  
  1274. .entry-content h1 {
  1275. font-size: 1.8em;
  1276. }
  1277.  
  1278. .entry-content h2 {
  1279. font-size: 1.7em;
  1280. }
  1281.  
  1282. .entry-content h3 {
  1283. font-size: 1.6em;
  1284. }
  1285.  
  1286. .entry-content h4 {
  1287. font-size: 1.45em;
  1288. }
  1289.  
  1290. .entry-content h5 {
  1291. font-size: 1.375em;
  1292. }
  1293.  
  1294. .entry-content h6 {
  1295. font-size: 1.2em;
  1296. }
  1297.  
  1298. /* =Post Single : Page
  1299. -------------------------------------------------------------- */
  1300.  
  1301. #post-single.type-page .post-container,
  1302. #post-single.error-404 .post-container,
  1303. #post-single.type-forum .post-container,
  1304. #post-single.type-topic .post-container {
  1305. width: 620px;
  1306.  
  1307. float: left;
  1308. }
  1309.  
  1310. /* =Post Single : Post
  1311. -------------------------------------------------------------- */
  1312.  
  1313. #post-single.type-post {
  1314. }
  1315.  
  1316. #post-single.type-post .post-container {
  1317. width: 620px;
  1318.  
  1319. float: left;
  1320. }
  1321.  
  1322. #post-single.type-post .post-info {
  1323. color: #777;
  1324. font: italic 11px 'Droid Serif', serif;
  1325. margin-bottom: 25px;
  1326. margin-top: -18px;
  1327. }
  1328.  
  1329. #post-single.type-post .post-info a {
  1330. color: #505050;
  1331. text-decoration: none;
  1332. }
  1333.  
  1334. /* =Post Single : Project
  1335. -------------------------------------------------------------- */
  1336.  
  1337. /* =Post Single : Project : Images
  1338. -------------------------------------------------------------- */
  1339.  
  1340. #post-single.type-project #project-images {
  1341. width: 600px;
  1342.  
  1343. float: left;
  1344. }
  1345.  
  1346. #post-single.type-project #project-images .image {
  1347. position: relative;
  1348.  
  1349. line-height: 0;
  1350. }
  1351.  
  1352. #post-single.type-project #project-images .pagination {
  1353. position: absolute;
  1354. bottom: 0px;
  1355. left: 0;
  1356. width: 100%;
  1357.  
  1358. display: block;
  1359. text-align: center;
  1360. }
  1361.  
  1362. #post-single.type-project #project-images .pagination li {
  1363. display: inline-block;
  1364. margin: 0 1px;
  1365. }
  1366.  
  1367. #post-single.type-project #project-images .pagination li a {
  1368. width: 10px;
  1369. height: 11px;
  1370.  
  1371. background: url(images/sprites/image-pagination-normal.png) no-repeat;
  1372. display: block;
  1373. }
  1374.  
  1375. #post-single.type-project #project-images .pagination li.active a {
  1376. background: url(images/sprites/image-pagination-active.png) no-repeat;
  1377. }
  1378.  
  1379. #post-single.type-project #project-images img {
  1380. width: 100%;
  1381. height: auto;
  1382.  
  1383. }
  1384.  
  1385. #post-single.type-project #project-info {
  1386. width: 320px;
  1387.  
  1388. float: right;
  1389. }
  1390.  
  1391. #post-single.type-project #project-info h1 {
  1392. color: #474747;
  1393. font: 16px 'Droid Sans', sans-serif;
  1394. }
  1395.  
  1396. #post-single.type-project #project-info .excerpt {
  1397. color: #777777;
  1398. font: italic 12px 'Droid Serif', serif;
  1399. line-height: 1.4em;
  1400. }
  1401.  
  1402. #post-single.type-project .skills {
  1403. color: #777777;
  1404. }
  1405.  
  1406. #post-single.type-project .skills strong {
  1407. color: #474747;
  1408. display: inline-block;
  1409. font-family: 'Droid Sans', sans-serif;
  1410. font-weight: bold;
  1411. margin-right: 4px;
  1412. }
  1413.  
  1414. #post-single.type-project .skills a {
  1415. color: #777777;
  1416. font-family: 'Droid serif', sans-serif;
  1417. font-style: italic;
  1418. text-decoration: none;
  1419. }
  1420.  
  1421. /* =Pagination
  1422. -------------------------------------------------------------- */
  1423.  
  1424. #loop .pagination .separator {
  1425. clear: both;
  1426. }
  1427.  
  1428. #loop .pagination .nav-next {
  1429. float: right;
  1430. padding-right: 10px;
  1431. }
  1432.  
  1433. #loop .pagination .nav-previous {
  1434. float: left;
  1435. padding-left: 10px;
  1436. }
  1437.  
  1438. #loop .pagination a {
  1439. color: #5e5e5e;
  1440. text-decoration: none;
  1441. }
  1442.  
  1443. /* =Comments
  1444. -------------------------------------------------------------- */
  1445.  
  1446. #comments {
  1447. margin-top: 35px;
  1448. }
  1449.  
  1450. /* =Comments : Single Comment
  1451. -------------------------------------------------------------- */
  1452.  
  1453. #comment-list {
  1454. margin-top: -5px;
  1455. }
  1456.  
  1457. .comment,
  1458. .pingback {
  1459. list-style: none;
  1460. margin: 35px 0;
  1461. }
  1462.  
  1463. .comment.bypostauthor {
  1464. }
  1465.  
  1466. .comment .avatar-container {
  1467. position: relative;
  1468. width: 65px;
  1469. height: 65px;
  1470.  
  1471. box-shadow: inset 0 0 5px rgba(0,0,0,0.15);
  1472. float: left;
  1473. }
  1474.  
  1475. .comment .avatar-container .shadow {
  1476. position: absolute;
  1477. bottom: -8px;
  1478. left: 0;
  1479. width: 65px;
  1480. height: 8px;
  1481.  
  1482. background: url(images/sprites/comment-shadow.png) no-repeat;
  1483. }
  1484.  
  1485. .comment .comment-text {
  1486. margin-left: 90px;
  1487. }
  1488.  
  1489. .comment .comment-text .content {
  1490. color: #6a6a6a;
  1491. margin-bottom: 20px;
  1492. }
  1493.  
  1494. .comment .comment-separator {
  1495. position: relative;
  1496. width: 9px;
  1497. height: 1px;
  1498.  
  1499. background: #ababab;
  1500. margin-bottom: 15px;
  1501. }
  1502.  
  1503. .comment .comment-separator a.comment-reply-link {
  1504. position: absolute;
  1505. top: -6px;
  1506. left: 24px;
  1507.  
  1508. color: #303030;
  1509. font-size: 10px;
  1510. text-decoration: none;
  1511. }
  1512.  
  1513. .comment .comment-info {
  1514. font-family: 'Droid Sans', sans-serif;
  1515. font-size: 12px;
  1516. }
  1517.  
  1518. .comment .comment-info .comment-author,
  1519. .comment .comment-info .comment-author a {
  1520. color: #303030;
  1521. display: inline-block;
  1522. font-weight: bold;
  1523. margin-right: 15px;
  1524. text-decoration: none;
  1525. }
  1526.  
  1527. .comment .comment-info .comment-date {
  1528. color: #5e5e5e;
  1529. }
  1530.  
  1531. /* =Comments : Single Comment : Pingback
  1532. -------------------------------------------------------------- */
  1533.  
  1534. .pingback .pingback-title,
  1535. .pingback .pingback-title a {
  1536. color: #303030;
  1537. font-weight: bold;
  1538. margin-bottom: 5px;
  1539. text-decoration: none;
  1540. }
  1541.  
  1542. .pingback .pingback-date {
  1543. color: #5e5e5e;
  1544. margin-bottom: 10px;
  1545. }
  1546.  
  1547. .pingback .pingback-content {
  1548. color: #474747;
  1549. }
  1550.  
  1551. /* =Comments : Single Comment : Multi Levels
  1552. -------------------------------------------------------------- */
  1553.  
  1554. .comment .comment {
  1555. margin-left: 90px;
  1556. }
  1557.  
  1558. /* =Comments : Respond
  1559. -------------------------------------------------------------- */
  1560.  
  1561. h3#reply-title,
  1562. h3#reply-title a,
  1563. h3#comments-title {
  1564. color: #333;
  1565. font-family: 'Droid Sans', sans-serif;
  1566. font-size: 17px;
  1567. margin-bottom: 1.5em;
  1568. }
  1569.  
  1570. #comment-list #respond {
  1571. background: #EFEFEF;
  1572. border: 1px solid #E2E2E2;
  1573. padding: 20px;
  1574. }
  1575.  
  1576. #comment-list .comment #respond {
  1577. margin-left: 90px;
  1578. }
  1579.  
  1580. #respond {
  1581. margin-bottom: 35px;
  1582. }
  1583.  
  1584. #commentform #comment,
  1585. #commentform .comment-form-field input {
  1586. border: 1px solid #DDD;
  1587. -moz-box-sizing: border-box;
  1588. -webkit-box-sizing: border-box;
  1589. box-sizing: border-box;
  1590. color: #666;
  1591. font: italic 12px 'Droid Serif', serif;
  1592. padding: 10px;
  1593. }
  1594.  
  1595. #commentform .comment-form-field input {
  1596. display: inline-block;
  1597. margin-right: 20px;
  1598. }
  1599.  
  1600. #commentform #comment {
  1601. width: 100%;
  1602. height: 200px;
  1603.  
  1604. }
  1605.  
  1606. #commentform .comment-form-field input:focus,
  1607. #commentform .comment-form-field input:hover,
  1608. #commentform #comment:hover,
  1609. #commentform #comment:focus {
  1610. border-color: #C0C0C0;
  1611. }
  1612.  
  1613. #commentform .comment-form-field label {
  1614. color: #525252;
  1615. font-size: 11px;
  1616. }
  1617.  
  1618. #commentform .logged-in-as {
  1619. color: #777;
  1620. margin-bottom: 15px;
  1621. }
  1622.  
  1623. #commentform .logged-in-as a {
  1624. color: #1e7cd2;
  1625. text-decoration: none;
  1626. }
  1627.  
  1628. #commentform .comment-form-field,
  1629. #commentform .comment-form-comment {
  1630. margin-bottom: 10px;
  1631. }
  1632.  
  1633. #commentform input[type=submit] {
  1634. background: rgb(247,247,247);
  1635. background: -moz-linear-gradient(top, rgba(247,247,247,1) 0%, rgba(244,244,244,1) 100%);
  1636. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(244,244,244,1)));
  1637. background: -webkit-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  1638. background: -o-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  1639. background: -ms-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  1640. background: linear-gradient(top, rgba(247,247,247,1) 0%,rgba(244,244,244,1) 100%);
  1641. border: 1px solid #cbc9c9;
  1642. box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  1643. color: #525252;
  1644. cursor: pointer;
  1645. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=0 );
  1646. font: bold 10px/1 "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1647. padding: 14px 20px;
  1648. text-shadow: 0 1px 0 #FFF;
  1649. }
  1650.  
  1651. #commentform input[type=submit]:hover {
  1652. border: 1px solid #BBB;
  1653. }
  1654.  
  1655. /* =Sidebar
  1656. -------------------------------------------------------------- */
  1657.  
  1658. #sidebar {
  1659. width: 280px;
  1660.  
  1661. float: right;
  1662. word-wrap: break-word;
  1663. }
  1664.  
  1665. #sidebar .widget {
  1666. color: #767676;
  1667. list-style: none;
  1668. margin-bottom: 40px;
  1669. }
  1670.  
  1671. #sidebar img {
  1672. height: auto;
  1673.  
  1674. max-width: 100%;
  1675. }
  1676.  
  1677. #sidebar .widget .separator {
  1678. height: 5px;
  1679.  
  1680. background: #eeeeee url(images/pattern.png) repeat;
  1681. border: solid #dedede;
  1682. border-width: 1px 0;
  1683. margin-top: 20px;
  1684. }
  1685.  
  1686. #sidebar .widget h2.widgettitle {
  1687. color: #3b3b3b;
  1688. font: 14px 'Droid Sans', sans-serif;
  1689. margin-bottom: 20px;
  1690. }
  1691.  
  1692. #sidebar .widget div {
  1693. line-height: 1.5em;
  1694. }
  1695.  
  1696. #sidebar .widget a {
  1697. color: #5e5e5e;
  1698. text-decoration: none;
  1699. }
  1700.  
  1701. #sidebar .widget ul li {
  1702. margin-bottom: 3px;
  1703. }
  1704.  
  1705. /* =Footer and Copyright
  1706. -------------------------------------------------------------- */
  1707.  
  1708. #footer {
  1709. position: relative;
  1710.  
  1711. background: url(images/footer.png) repeat;
  1712. margin-top: 45px;
  1713. padding: 45px 0;
  1714. }
  1715.  
  1716. #footer .container {
  1717. width: 990px;
  1718.  
  1719. display: table;
  1720. }
  1721.  
  1722. #footer .pointer {
  1723. position: absolute;
  1724. top: 0;
  1725. left: 50%;
  1726. width: 30px;
  1727. height: 15px;
  1728.  
  1729. background: url(images/sprites/footer-pointer.png) no-repeat;
  1730. margin-left: -15px;
  1731. z-index: 2;
  1732. }
  1733.  
  1734. /* =Footer and Copyright : Widgets
  1735. -------------------------------------------------------------- */
  1736.  
  1737. #footer ul.widgets {
  1738. width: 100%;
  1739.  
  1740. display: table-row;
  1741. }
  1742.  
  1743. #footer li.widget {
  1744. display: table-cell;
  1745. padding: 0 15px;
  1746. }
  1747.  
  1748. #footer li.widget h2.widgettitle {
  1749. color: #dbdbdb;
  1750. font: bold 14px 'Droid Sans', sans-sefid;
  1751. line-height: 1em;
  1752. margin-bottom: 30px;
  1753. }
  1754.  
  1755. #footer li.widget {
  1756. color: #b8b8b8;
  1757. font-size: 12px;
  1758. line-height: 1.5em;
  1759. }
  1760.  
  1761. #footer li.widget p {
  1762. margin-top: 1em;
  1763. }
  1764.  
  1765. #footer li.widget a {
  1766. color: #e1e1e1;
  1767. font-weight: 500;
  1768. text-decoration: none;
  1769. }
  1770.  
  1771. #copyright {
  1772. background: #181818;
  1773. box-shadow: inset 0 5px 0 rgba(0,0,0,0.2);
  1774. color: #b6b6b6;
  1775. font-size: 10px;
  1776. padding: 15px 0;
  1777. text-align: center;
  1778. }
  1779.  
  1780. #copyright a {
  1781. color: #CCC;
  1782. text-decoration: none;
  1783. }
  1784.  
  1785. /* =Flex Slider
  1786. -------------------------------------------------------------- */
  1787.  
  1788. .gallery-caption {
  1789. }
  1790.  
  1791. .flexslider {
  1792. position: relative;
  1793. width: 100%;
  1794.  
  1795. margin-bottom: 40px;
  1796. }
  1797.  
  1798. .flexslider img {
  1799. width: 100%;
  1800. height: auto;
  1801.  
  1802. }
  1803.  
  1804. .flexslider ul,
  1805. .flexslider ol {
  1806. list-style: none !important;
  1807. margin: 0 !important;
  1808. padding: 0 !important;
  1809. }
  1810.  
  1811. .flexslider .shadow,
  1812. #project-images .shadow {
  1813. position: absolute;
  1814. bottom: -31px;
  1815. left: 0;
  1816. width: 600px;
  1817. height: 31px;
  1818.  
  1819. background: url(images/sprites/shadow-large.png) no-repeat center center;
  1820. }
  1821.  
  1822. .flexslider .flex-control-nav {
  1823. display: none;
  1824. }
  1825.  
  1826. .flexslider .flex-direction-nav {
  1827. }
  1828.  
  1829. .flexslider .flex-direction-nav a {
  1830. position: absolute;
  1831. top: 50%;
  1832. width: 18px;
  1833. height: 26px;
  1834.  
  1835. display: block;
  1836. margin-top: -13px;
  1837. opacity: 0;
  1838. text-indent: -9999px;
  1839. -webkit-transition: all 0.2s ease-in-out;
  1840. -moz-transition: all 0.2s ease-in-out;
  1841. -o-transition: all 0.2s ease-in-out;
  1842. -ms-transition: all 0.2s ease-in-out;
  1843. transition: all 0.2s ease-in-out;
  1844. }
  1845.  
  1846. .flexslider:hover .flex-direction-nav a {
  1847. opacity: 1;
  1848. }
  1849.  
  1850. .flexslider .flex-direction-nav a.prev {
  1851. left: 25px;
  1852.  
  1853. background: url(images/sprites/gallery-prev.png) no-repeat;
  1854. }
  1855.  
  1856. .flexslider .flex-direction-nav a.prev:active {
  1857. left: 20px;
  1858.  
  1859. }
  1860.  
  1861. .flexslider .flex-direction-nav a.next {
  1862. right: 25px;
  1863.  
  1864. background: url(images/sprites/gallery-next.png) no-repeat;
  1865. }
  1866.  
  1867. .flexslider .flex-direction-nav a.next:active {
  1868. right: 20px;
  1869.  
  1870. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement