Advertisement
Guest User

Untitled

a guest
Jun 19th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.40 KB | None | 0 0
  1. /*
  2. Theme Name: Enterprise Child Theme
  3. Theme URI: http://www.studiopress.com/themes/enterprise
  4. Description: Enterprise is a two or three column child theme created for the Genesis Framework.
  5. Author: StudioPress
  6. Author URI: http://www.studiopress.com/
  7.  
  8. Version: 1.1
  9.  
  10. Tags: black, blue, custom-background, custom-header, custom-menu, featured-images, fixed-width, gray, left-sidebar, one-column, right-sidebar, sticky-post, theme-options, threaded-comments, three-columns, translation-ready, two-columns, white
  11.  
  12. Template: genesis
  13. Template Version: 1.7
  14.  
  15. License: GNU General Public License v2.0
  16. License URI: http://www.opensource.org/licenses/gpl-license.php
  17. */
  18.  
  19. /* Table of Contents
  20.  
  21. * Import Fonts
  22. * Defaults
  23. * Hyperlinks
  24. * Body
  25. * Wrap
  26. * Header
  27. * Image Header - Partial Width
  28. * Image Header - Full Width
  29. * Navigation Constants
  30. * Header Right Navigation
  31. * Primary Navigation
  32. * Primary Navigation Extras
  33. * Secondary Navigation
  34. * Inner
  35. * Home Top
  36. * Home Middle
  37. * Breadcrumb
  38. * Taxonomy Description
  39. * Content-Sidebar Wrap
  40. * Content
  41. * Column Classes
  42. * Featured Post Grid
  43. * Headlines
  44. * Ordered / Unordered Lists
  45. * Post Info
  46. * Post Meta
  47. * Author Box
  48. * Sticky Posts
  49. * Archive Page
  50. * Post Icons
  51. * Images
  52. * Post Navigation
  53. * Primary / Secondary Sidebars
  54. * Dropdowns
  55. * Featured Page / Post
  56. * User Profile
  57. * Buttons
  58. * Search Form
  59. * eNews & Updates Widget
  60. * Calendar Widget
  61. * Footer Widgets
  62. * Footer
  63. * Comments
  64. * Gravity Forms
  65.  
  66. */
  67.  
  68.  
  69. /* Import Fonts
  70. ------------------------------------------------------------ */
  71.  
  72. @import url(http://fonts.googleapis.com/css?family=Droid+Sans);
  73.  
  74.  
  75. /* Defaults
  76. ------------------------------------------------------------ */
  77.  
  78. body,
  79. h1,
  80. h2,
  81. h2 a,
  82. h2 a:visited,
  83. h3,
  84. h4,
  85. h5,
  86. h6,
  87. p,
  88. select,
  89. textarea {
  90. color: #555;
  91. font-family: Arial, Helvetica, Tahoma, sans-serif;
  92. font-size: 13px;
  93. font-weight: normal;
  94. line-height: 20px;
  95. margin: 0;
  96. padding: 0;
  97. text-decoration: none;
  98. }
  99.  
  100. input {
  101. color: #333;
  102. font-family: Arial, Helvetica, Tahoma, sans-serif;
  103. }
  104.  
  105. blockquote,
  106. input,
  107. select,
  108. textarea,
  109. .author-box,
  110. .sticky,
  111. .taxonomy-description,
  112. .wp-caption {
  113. -khtml-border-radius: 3px;
  114. -moz-border-radius: 3px;
  115. -webkit-border-radius: 3px;
  116. background-color: #f5f5f5;
  117. border: 1px solid #ddd;
  118. border-radius: 3px;
  119. }
  120.  
  121. li,
  122. ol,
  123. ul {
  124. margin: 0;
  125. padding: 0;
  126. }
  127.  
  128. ol li {
  129. list-style-type: decimal;
  130. }
  131.  
  132.  
  133. /* Hyperlinks
  134. ------------------------------------------------------------ */
  135.  
  136. a,
  137. a:visited {
  138. color: #008dcf;
  139. text-decoration: none;
  140. }
  141.  
  142. a:hover {
  143. text-decoration: underline;
  144. }
  145.  
  146. a img {
  147. border: none;
  148. }
  149.  
  150.  
  151. /* Body
  152. ------------------------------------------------------------ */
  153.  
  154. body {
  155. background-color: #f0f0f0;
  156. }
  157.  
  158.  
  159. /* Wrap
  160. ------------------------------------------------------------ */
  161.  
  162. #wrap {
  163. margin: 0 auto;
  164. }
  165.  
  166.  
  167. /* Header
  168. ------------------------------------------------------------ */
  169.  
  170. #header {
  171. margin: 0 auto;
  172. min-height: 120px;
  173. overflow: hidden;
  174. width: 960px;
  175. }
  176.  
  177. #title-area {
  178. float: left;
  179. overflow: hidden;
  180. padding: 25px 0 0;
  181. width: 360px;
  182. }
  183.  
  184. #title {
  185. border: none;
  186. font-family: 'Droid Sans', arial, serif;
  187. font-size: 36px;
  188. line-height: 42px;
  189. margin: 0;
  190. padding: 0;
  191. text-transform: uppercase;
  192. }
  193.  
  194. #title a,
  195. #title a:hover {
  196. color: #333;
  197. text-decoration: none;
  198. }
  199.  
  200. #description {
  201. font-family: 'Droid Sans', arial, serif;
  202. font-size: 14px;
  203. }
  204.  
  205. #header .widget-area {
  206. float: right;
  207. width: 590px;
  208. }
  209.  
  210.  
  211. /* Image Header - Partial Width
  212. ------------------------------------------------------------ */
  213.  
  214. .header-image #title-area,
  215. .header-image #title,
  216. .header-image #title a {
  217. display: block;
  218. float: left;
  219. height: 120px;
  220. overflow: hidden;
  221. padding: 0;
  222. text-indent: -9999px;
  223. width: 360px;
  224. }
  225.  
  226. .header-image #description {
  227. display: block;
  228. overflow: hidden;
  229. }
  230.  
  231.  
  232. /* Image Header - Full Width
  233. ------------------------------------------------------------ */
  234.  
  235. .header-full-width #title-area,
  236. .header-full-width #title,
  237. .header-full-width #title a {
  238. width: 960px;
  239. }
  240.  
  241.  
  242. /* Navigation Constants
  243. ------------------------------------------------------------ */
  244.  
  245. li:hover ul ul,
  246. li.sfHover ul ul {
  247. left: -9999px;
  248. }
  249.  
  250. li:hover,
  251. li.sfHover {
  252. position: static;
  253. }
  254.  
  255. li a .sf-sub-indicator {
  256. position: absolute;
  257. text-indent: -9999px;
  258. }
  259.  
  260.  
  261. /* Header Right Navigation
  262. ------------------------------------------------------------ */
  263.  
  264. #header ul.nav,
  265. #header ul.menu {
  266. -khtml-border-radius: 3px;
  267. -moz-border-radius: 3px;
  268. -webkit-border-radius: 3px;
  269. background-color: #f5f5f5;
  270. border: 1px solid #ddd;
  271. border-radius: 3px;
  272. float: right;
  273. font-family: 'Droid Sans', arial, serif;
  274. }
  275.  
  276. #header ul.nav ul,
  277. #header ul.menu ul {
  278. float: right;
  279. margin: 0;
  280. padding: 0;
  281. width: 100%;
  282. }
  283.  
  284. #header ul.nav li,
  285. #header ul.menu li {
  286. float: left;
  287. list-style-type: none;
  288. text-transform: uppercase;
  289. }
  290.  
  291. #header ul.nav li a,
  292. #header ul.menu li a {
  293. border-right: 1px solid #ddd;
  294. color: #555;
  295. display: block;
  296. font-size: 12px;
  297. padding: 6px 15px 5px;
  298. position: relative;
  299. text-decoration: none;
  300. }
  301.  
  302. #header ul.nav li a:hover,
  303. #header ul.nav li a:active,
  304. #header ul.nav .current_page_item a,
  305. #header ul.nav .current-cat a,
  306. #header ul.nav .current-menu-item a,
  307. #header ul.menu li a:hover,
  308. #header ul.menu li a:active,
  309. #header ul.menu .current_page_item a,
  310. #header ul.menu .current-cat a,
  311. #header ul.menu .current-menu-item a {
  312. color: #222;
  313. }
  314.  
  315. #header ul.nav li li a,
  316. #header ul.nav li li a:link,
  317. #header ul.nav li li a:visited,
  318. #header ul.menu li li a,
  319. #header ul.menu li li a:link,
  320. #header ul.menu li li a:visited {
  321. background-color: #f5f5f5;
  322. border: 1px solid #ddd;
  323. border-top-width: 0;
  324. color: #555;
  325. font-size: 11px;
  326. padding: 5px 10px;
  327. position: relative;
  328. text-transform: none;
  329. width: 128px;
  330. }
  331.  
  332. #header ul.nav li li a:hover,
  333. #header ul.nav li li a:active,
  334. #header ul.menu li li a:hover,
  335. #header ul.menu li li a:active {
  336. color: #222;
  337. }
  338.  
  339. #header ul.nav li ul,
  340. #header ul.menu li ul {
  341. height: auto;
  342. left: -9999px;
  343. margin: 0 0 0 -1px;
  344. position: absolute;
  345. width: 150px;
  346. z-index: 9999;
  347. }
  348.  
  349. #header ul.nav li ul a,
  350. #header ul.menu li ul a {
  351. width: 130px;
  352. }
  353.  
  354. #header ul.nav li ul ul,
  355. #header ul.menu li ul ul {
  356. margin: -31px 0 0 149px;
  357. }
  358.  
  359. #header ul.nav li:hover>ul,
  360. #header ul.nav li.sfHover ul,
  361. #header ul.menu li:hover>ul,
  362. #header ul.menu li.sfHover ul {
  363. left: auto;
  364. }
  365.  
  366.  
  367. /* Primary Navigation
  368. ------------------------------------------------------------ */
  369.  
  370. #nav {
  371. -khtml-border-radius: 10px;
  372. -moz-border-radius-topleft: 10px;
  373. -moz-border-radius-topright: 10px;
  374. -webkit-border-top-left-radius: 10px;
  375. -webkit-border-top-right-radius: 10px;
  376. background: url(images/nav3.png);
  377. border-top-left-radius: 10px;
  378. border-top-right-radius: 10px;
  379. border-bottom-left-radius: 0;
  380. border-bottom-right-radius: 0;
  381. clear: both;
  382. color: #eee;
  383. font-family: 'Droid Sans', arial, serif;
  384. margin: 0 auto;
  385. overflow: hidden;
  386. text-shadow: #000 1px 1px;
  387. text-transform: uppercase;
  388. width: 960px;
  389. }
  390.  
  391. #nav ul {
  392. float: left;
  393. padding: 0 0 0 10px;
  394. width: 950px;
  395. }
  396.  
  397. #nav ul ul {
  398. padding: 0;
  399. }
  400.  
  401. #nav li {
  402. float: left;
  403. list-style-type: none;
  404. }
  405.  
  406. #nav li a,
  407. #nav li.home a {
  408. background: url(images/nav-line.png) no-repeat right;
  409. color: #fff;
  410. display: block;
  411. font-size: 13px;
  412. padding: 13px 22px 12px 20px;
  413. position: relative;
  414. text-decoration: none;
  415. text-shadow: #000 1px 1px;
  416.  
  417. }
  418.  
  419. #nav li li a,
  420. #nav li li a:link,
  421. #nav li li a:visited {
  422. background: none;
  423. background-color: #f5f5f5;
  424. border: 1px solid #ddd;
  425. border-top-width: 0;
  426. color: #333;
  427. font-size: 11px;
  428. padding: 6px 10px 5px;
  429. position: relative;
  430. text-shadow: #fff 1px 1px;
  431. text-transform: none;
  432. width: 128px;
  433. }
  434.  
  435. #nav li li a:hover,
  436. #nav li li a:active {
  437. background-color: #fff;
  438. color: #333;
  439. }
  440.  
  441. #nav li ul {
  442. height: auto;
  443. left: -9999px;
  444. position: absolute;
  445. width: 150px;
  446. z-index: 9999;
  447. }
  448.  
  449. #nav li ul a {
  450. width: 130px;
  451. }
  452.  
  453. #nav li ul ul {
  454. margin: -32px 0 0 149px;
  455. }
  456.  
  457. #nav li:hover>ul,
  458. #nav li.sfHover ul {
  459. left: auto;
  460. }
  461.  
  462.  
  463. /* Primary Navigation Extras
  464. ------------------------------------------------------------ */
  465.  
  466. #nav li.right {
  467. float: right;
  468. font-size: 13px;
  469. padding: 13px 22px 12px 20px;
  470. }
  471.  
  472. #nav li.right a {
  473. background: none;
  474. border: none;
  475. color: #fff;
  476. display: inline;
  477. text-decoration: none;
  478. }
  479.  
  480. #nav li.right a:hover {
  481. color: #fff;
  482. text-decoration: underline;
  483. text-shadow: #000 1px 1px;
  484. }
  485.  
  486. #nav li.search {
  487. padding: 0 10px;
  488. }
  489.  
  490. #nav li.rss a {
  491. background: url(images/rss.png) no-repeat center left;
  492. margin: 0 0 0 10px;
  493. padding: 7px 0 5px 16px;
  494. }
  495.  
  496. #nav li.twitter a {
  497. background: url(images/twitter-nav.png) no-repeat center left;
  498. padding: 7px 0 5px 20px;
  499. }
  500.  
  501.  
  502. /* Secondary Navigation
  503. ------------------------------------------------------------ */
  504.  
  505. #subnav {
  506. -khtml-border-radius: 10px;
  507. -moz-border-radius-bottomleft: 10px;
  508. -moz-border-radius-bottomright: 10px;
  509. -webkit-border-bottom-left-radius: 10px;
  510. -webkit-border-bottom-right-radius: 10px;
  511. background: url(images/subnav3.png);
  512. border-top-left-radius: 0;
  513. border-top-right-radius: 0;
  514. border-bottom-left-radius: 10px;
  515. border-bottom-right-radius: 10px;
  516. clear: both;
  517. color: #fff;
  518. font-family: 'Droid Sans', arial, serif;
  519. margin: 0 auto 20px;
  520. overflow: hidden;
  521. text-shadow: #000 1px 1px;
  522. text-transform: uppercase;
  523. width: 960px;
  524. }
  525.  
  526. #subnav ul {
  527. float: left;
  528. padding: 0 0 0 10px;
  529. width: 950px;
  530. }
  531.  
  532. #subnav ul ul {
  533. padding: 0;
  534. }
  535.  
  536. #subnav li {
  537. float: left;
  538. list-style-type: none;
  539. }
  540.  
  541. #subnav li a {
  542. color: #fff;
  543. display: block;
  544. font-size: 12px;
  545. padding: 9px 10px 8px;
  546. position: relative;
  547. text-decoration: none;
  548. }
  549.  
  550. #subnav li li a,
  551. #subnav li li a:link,
  552. #subnav li li a:visited {
  553. background-color: #f5f5f5;
  554. border: 1px solid #ddd;
  555. border-top-width: 0;
  556. color: #333;
  557. font-size: 11px;
  558. padding: 6px 10px 5px;
  559. position: relative;
  560. text-transform: none;
  561. text-shadow: #fff 1px 1px;
  562. width: 128px;
  563. }
  564.  
  565. #subnav li li a:hover,
  566. #subnav li li a:active {
  567. background: none;
  568. background-color: #fff;
  569. color: #333;
  570. }
  571.  
  572. #subnav li ul {
  573. height: auto;
  574. left: -9999px;
  575. position: absolute;
  576. width: 150px;
  577. z-index: 9999;
  578. }
  579.  
  580. #subnav li ul a {
  581. width: 130px;
  582. }
  583.  
  584. #subnav li ul ul {
  585. margin: -32px 0 0 149px;
  586. }
  587.  
  588. #subnav li:hover>ul,
  589. #subnav li.sfHover ul {
  590. left: auto;
  591. }
  592.  
  593.  
  594. /* Inner
  595. ------------------------------------------------------------ */
  596.  
  597. #inner {
  598. -khtml-border-radius: 10px;
  599. -moz-border-radius: 10px;
  600. -webkit-border-radius: 10px;
  601. background-color: #fff;
  602. border: 1px solid #ddd;
  603. border-radius: 10px;
  604. margin: 20px auto 0;
  605. overflow: hidden;
  606. padding: 25px 29px 30px;
  607. width: 900px;
  608. }
  609.  
  610.  
  611. /* Home Top
  612. ------------------------------------------------------------ */
  613.  
  614. #home-top-bg {
  615. background: url(images/home-top.png);
  616. }
  617.  
  618. #home-top {
  619. background: url(images/home-top-wrap.png);
  620. height: 280px;
  621. margin: 0 auto;
  622. padding: 20px 0 0 0;
  623. width: 960px;
  624. }
  625.  
  626. #home-top .wrap {
  627. -khtml-border-radius: 10px;
  628. -moz-border-radius: 10px;
  629. -webkit-border-radius: 10px;
  630. background-color: #fff;
  631. border: 1px solid #ccc;
  632. border-radius: 10px;
  633. overflow: hidden;
  634. padding: 9px;
  635. width: 940px;
  636. }
  637.  
  638. #home-top a,
  639. #home-top a:visited {
  640. color: #fff;
  641. text-decoration: underline;
  642. }
  643.  
  644. #home-top a:hover {
  645. text-decoration: none;
  646. }
  647.  
  648. #home-top p {
  649. color: #fff;
  650. }
  651.  
  652. .home-top-1 {
  653. background: #1ea7e8 url(images/home-top-left.png) left repeat-y;
  654. float: left;
  655. height: 235px;
  656. width: 330px;
  657. }
  658.  
  659. .home-top-1 .widget {
  660. margin: 0;
  661. padding: 20px;
  662. }
  663.  
  664. .home-top-2 {
  665. float: right;
  666. height: 235px;
  667. width: 600px;
  668. }
  669.  
  670.  
  671. /* Home Middle
  672. ------------------------------------------------------------ */
  673.  
  674. #home-middle {
  675. clear: both;
  676. overflow: hidden;
  677. }
  678.  
  679. .home-middle-1 {
  680. float: left;
  681. padding: 0 30px 0 0;
  682. width: 280px;
  683. }
  684.  
  685. .home-middle-2 {
  686. float: left;
  687. width: 280px;
  688. }
  689.  
  690. .home-middle-3 {
  691. float: right;
  692. width: 280px;
  693. }
  694.  
  695.  
  696. /* Breadcrumb
  697. ------------------------------------------------------------ */
  698.  
  699. .breadcrumb {
  700. border-bottom: 1px dotted #ccc;
  701. margin: 0 0 30px;
  702. padding: 0 0 5px;
  703. }
  704.  
  705.  
  706. /* Taxonomy Description
  707. ------------------------------------------------------------ */
  708.  
  709. .taxonomy-description {
  710. -khtml-border-radius: 3px;
  711. -moz-border-radius: 3px;
  712. -webkit-border-radius: 3px;
  713. border-radius: 3px;
  714. margin: 0 0 30px;
  715. padding: 10px;
  716. }
  717.  
  718.  
  719. /* Content-Sidebar Wrap
  720. ------------------------------------------------------------ */
  721.  
  722. #content-sidebar-wrap {
  723. float: left;
  724. width: 720px;
  725. }
  726.  
  727. .home .full-width-content #content-sidebar-wrap {
  728. width: 960px;
  729. }
  730.  
  731. .content-sidebar #content-sidebar-wrap,
  732. .full-width-content #content-sidebar-wrap,
  733. .sidebar-content #content-sidebar-wrap {
  734. width: 900px;
  735. }
  736.  
  737. .sidebar-content-sidebar #content-sidebar-wrap,
  738. .sidebar-sidebar-content #content-sidebar-wrap {
  739. float: right;
  740. }
  741.  
  742.  
  743. /* Content
  744. ------------------------------------------------------------ */
  745.  
  746. #content {
  747. float: left;
  748. width: 420px;
  749. }
  750.  
  751. .content-sidebar #content,
  752. .sidebar-content #content {
  753. width: 600px;
  754. }
  755.  
  756. .sidebar-content #content,
  757. .sidebar-sidebar-content #content {
  758. float: right;
  759. }
  760.  
  761. .full-width-content #content {
  762. width: 900px;
  763. }
  764.  
  765. blockquote {
  766. margin: 5px 15px 20px;
  767. padding: 15px 20px 0;
  768. }
  769.  
  770. blockquote p {
  771. color: #666;
  772. font-family: 'Droid Sans', arial, serif;
  773. font-style: italic;
  774. }
  775.  
  776. .post {
  777. margin: 0 0 40px;
  778. }
  779.  
  780. .entry-content {
  781. overflow: hidden;
  782. }
  783.  
  784. .entry-content p {
  785. padding: 0 0 15px;
  786. }
  787.  
  788. p.subscribe-to-comments {
  789. padding: 20px 0 10px;
  790. }
  791.  
  792. .clear {
  793. clear: both;
  794. }
  795.  
  796. .clear-line {
  797. border-bottom: 1px solid #ddd;
  798. clear: both;
  799. margin: 0 0 15px;
  800. }
  801.  
  802.  
  803. /* Column Classes
  804. ------------------------------------------------------------ */
  805.  
  806. .five-sixths,
  807. .four-fifths,
  808. .four-sixths,
  809. .one-fifth,
  810. .one-fourth,
  811. .one-half,
  812. .one-sixth,
  813. .one-third,
  814. .three-fifths,
  815. .three-fourths,
  816. .three-sixths,
  817. .two-fifths,
  818. .two-fourths,
  819. .two-sixths,
  820. .two-thirds {
  821. float: left;
  822. margin: 0 0 20px;
  823. padding-left: 3%;
  824. }
  825.  
  826. .one-half,
  827. .three-sixths,
  828. .two-fourths {
  829. width: 48%;
  830. }
  831.  
  832. .one-third,
  833. .two-sixths {
  834. width: 31%;
  835. }
  836.  
  837. .four-sixths,
  838. .two-thirds {
  839. width: 65%;
  840. }
  841.  
  842. .one-fourth {
  843. width: 22.5%;
  844. }
  845.  
  846. .three-fourths {
  847. width: 73.5%;
  848. }
  849.  
  850. .one-fifth {
  851. width: 17.4%;
  852. }
  853.  
  854. .two-fifths {
  855. width: 37.8%;
  856. }
  857.  
  858. .three-fifths {
  859. width: 58.2%;
  860. }
  861.  
  862. .four-fifths {
  863. width: 78.6%;
  864. }
  865.  
  866. .one-sixth {
  867. width: 14%;
  868. }
  869.  
  870. .five-sixths {
  871. width: 82%;
  872. }
  873.  
  874. .first {
  875. clear: both;
  876. padding-left: 0;
  877. }
  878.  
  879.  
  880. /* Featured Post Grid
  881. ------------------------------------------------------------ */
  882.  
  883. .genesis-grid-even {
  884. float: right;
  885. padding: 0 0 15px;
  886. width: 48%;
  887. }
  888.  
  889. .genesis-grid-odd {
  890. clear: both;
  891. float: left;
  892. padding: 0 0 15px;
  893. width: 48%;
  894. }
  895.  
  896. .genesis-grid-even,
  897. .genesis-grid-odd {
  898. margin: 0 0 20px;
  899. }
  900.  
  901.  
  902. /* Headlines
  903. ------------------------------------------------------------ */
  904.  
  905. h1,
  906. h2,
  907. h3,
  908. h4,
  909. h5,
  910. h6 {
  911. color: #333;
  912. font-family: 'Droid Sans', arial, serif;
  913. margin: 0 0 10px;
  914. text-transform: uppercase;
  915. }
  916.  
  917. h1,
  918. h2 {
  919. border-bottom: 1px dotted #ccc;
  920. margin: 0 0 15px;
  921. padding: 0 0 5px;
  922. }
  923.  
  924. h1,
  925. h2,
  926. h2 a,
  927. h2 a:visited {
  928. color: #333;
  929. font-family: 'Droid Sans', arial, serif;
  930. font-size: 20px;
  931. line-height: 24px;
  932. }
  933.  
  934. .taxonomy-description h1,
  935. .widget-area h2,
  936. .widget-area h2 a {
  937. font-size: 14px;
  938. line-height: 20px;
  939. margin: 0 0 5px;
  940. }
  941.  
  942. h2 a:hover {
  943. color: #008dcf;
  944. text-decoration: none;
  945. }
  946.  
  947. h3 {
  948. font-size: 18px;
  949. }
  950.  
  951. h4 {
  952. font-size: 16px;
  953. }
  954.  
  955. #home-top h4 {
  956. background: none;
  957. border-bottom: 1px dotted #56b7e3;
  958. color: #fff;
  959. font-size: 20px;
  960. padding: 0 0 7px;
  961. text-shadow: #045ea4 1px 1px;
  962. }
  963.  
  964. .home h4,
  965. .widget-area h4 {
  966. background: url(images/sidebar-headline.png) left no-repeat;
  967. border-bottom: 1px dotted #ccc;
  968. font-size: 16px;
  969. margin: 0 0 10px;
  970. padding: 0 0 4px 15px;
  971. text-transform: uppercase;
  972. }
  973.  
  974. .widget-area h4 a {
  975. color: #333;
  976. text-decoration: none;
  977. }
  978.  
  979. h5 {
  980. font-size: 14px;
  981. }
  982.  
  983. h6 {
  984. font-size: 12px;
  985. }
  986.  
  987.  
  988. /* Ordered / Unordered Lists
  989. ------------------------------------------------------------ */
  990.  
  991. .entry-content ol,
  992. .entry-content ul {
  993. margin: 0;
  994. padding: 0 0 15px;
  995. }
  996.  
  997. .entry-content ol {
  998. margin: 0;
  999. }
  1000.  
  1001. .archive-page ul li,
  1002. .entry-content ul li {
  1003. list-style-type: square;
  1004. margin: 0 0 0 30px;
  1005. padding: 0;
  1006. }
  1007.  
  1008. .entry-content ol li {
  1009. margin: 0 0 0 35px;
  1010. }
  1011.  
  1012. .archive-page ul ul,
  1013. .entry-content ol ol,
  1014. .entry-content ul ul {
  1015. padding: 0;
  1016. }
  1017.  
  1018.  
  1019. /* Post Info
  1020. ------------------------------------------------------------ */
  1021.  
  1022. .post-info {
  1023. font-size: 11px;
  1024. margin: -5px 0 15px;
  1025. text-transform: uppercase;
  1026. }
  1027.  
  1028.  
  1029. /* Post Meta
  1030. ------------------------------------------------------------ */
  1031.  
  1032. .post-meta {
  1033. border-top: 1px dotted #ccc;
  1034. clear: both;
  1035. font-size: 11px;
  1036. padding: 5px 0 0;
  1037. text-transform: uppercase;
  1038. }
  1039.  
  1040.  
  1041. /* Author Box
  1042. ------------------------------------------------------------ */
  1043.  
  1044. .author-box {
  1045. margin: 0 0 40px;
  1046. overflow: hidden;
  1047. padding: 10px;
  1048. }
  1049.  
  1050.  
  1051. /* Sticky Posts
  1052. ------------------------------------------------------------ */
  1053.  
  1054. .sticky {
  1055. margin: 0 0 40px;
  1056. padding: 20px;
  1057. }
  1058.  
  1059.  
  1060. /* Archive Page
  1061. ------------------------------------------------------------ */
  1062.  
  1063. .archive-page {
  1064. float: left;
  1065. padding: 20px 0;
  1066. width: 45%;
  1067. }
  1068.  
  1069.  
  1070. /* Post Icons
  1071. ------------------------------------------------------------ */
  1072.  
  1073. .categories {
  1074. background: url(images/icon-categories.png) no-repeat top left;
  1075. margin: 0 0 0 3px;
  1076. padding: 3px 0 2px 22px;
  1077. }
  1078.  
  1079. .post-comments {
  1080. background: url(images/icon-comments.png) no-repeat top left;
  1081. margin: 0 0 0 3px;
  1082. padding: 3px 0 2px 22px;
  1083. }
  1084.  
  1085. .tags {
  1086. background: url(images/icon-tags.png) no-repeat top left;
  1087. margin: 0 0 0 3px;
  1088. padding: 3px 0 2px 22px;
  1089. }
  1090.  
  1091. .time {
  1092. background: url(images/icon-time.png) no-repeat top left;
  1093. margin: 0 0 0 3px;
  1094. padding: 3px 0 2px 22px;
  1095. }
  1096.  
  1097.  
  1098. /* Images
  1099. ------------------------------------------------------------ */
  1100.  
  1101. .avatar,
  1102. .featuredpage img,
  1103. .featuredpost img,
  1104. .post-image {
  1105. background: #fff;
  1106. border: 4px solid #eee;
  1107. margin: 0 0 5px;
  1108. padding: 1px;
  1109. }
  1110.  
  1111. .author-box .avatar {
  1112. border: 4px solid #e5e5e5;
  1113. float: left;
  1114. height: 70px;
  1115. margin: 0 10px 0 0;
  1116. width: 70px;
  1117. }
  1118.  
  1119. .post-image {
  1120. margin: 0 10px 10px 0;
  1121. }
  1122.  
  1123. .comment-list li .avatar {
  1124. border: 4px solid #e5e5e5;
  1125. float: right;
  1126. margin: 0 5px 0 10px;
  1127. }
  1128.  
  1129. img.centered,
  1130. .aligncenter {
  1131. display: block;
  1132. margin: 0 auto 10px;
  1133. }
  1134.  
  1135. img.alignnone {
  1136. display: inline;
  1137. margin: 0 0 10px;
  1138. }
  1139.  
  1140. img.alignleft {
  1141. display: inline;
  1142. margin: 0 10px 10px 0;
  1143. }
  1144.  
  1145. img.alignright {
  1146. display: inline;
  1147. margin: 0 0 10px 10px;
  1148. }
  1149.  
  1150. .alignleft {
  1151. float: left;
  1152. margin: 0 10px 0 0;
  1153. }
  1154.  
  1155. .alignright {
  1156. float: right;
  1157. margin: 0 0 0 10px;
  1158. }
  1159.  
  1160. .wp-caption {
  1161. padding: 5px;
  1162. text-align: center;
  1163. }
  1164.  
  1165. p.wp-caption-text {
  1166. font-size: 12px;
  1167. line-height: 16px;
  1168. padding: 5px 0;
  1169. }
  1170.  
  1171. .wp-smiley,
  1172. .wp-wink {
  1173. border: none;
  1174. float: none;
  1175. }
  1176.  
  1177. .gallery-caption {
  1178. }
  1179.  
  1180.  
  1181. /* Post Navigation
  1182. ------------------------------------------------------------ */
  1183.  
  1184. .navigation {
  1185. overflow: hidden;
  1186. padding: 20px 0;
  1187. width: 100%;
  1188. }
  1189.  
  1190. .navigation li {
  1191. display: inline;
  1192. }
  1193.  
  1194. .navigation li a,
  1195. .navigation li.disabled,
  1196. .navigation li a:hover,
  1197. .navigation li.active a {
  1198. -khtml-border-radius: 3px;
  1199. -moz-border-radius: 3px;
  1200. -webkit-border-radius: 3px;
  1201. border: 1px solid #ddd;
  1202. border-radius: 3px;
  1203. padding: 5px 8px;
  1204. }
  1205.  
  1206. .navigation li a:hover,
  1207. .navigation li.active a {
  1208. background-color: #f5f5f5;
  1209. }
  1210.  
  1211.  
  1212. /* Primary / Secondary Sidebars
  1213. ------------------------------------------------------------ */
  1214.  
  1215. .sidebar {
  1216. display: inline;
  1217. float: right;
  1218. font-size: 13px;
  1219. line-height: 20px;
  1220. width: 270px;
  1221. }
  1222.  
  1223. .sidebar p {
  1224. font-size: 13px;
  1225. line-height: 20px;
  1226. }
  1227.  
  1228. #sidebar-alt {
  1229. float: left;
  1230. width: 150px;
  1231. }
  1232.  
  1233. .sidebar-content #sidebar,
  1234. .sidebar-sidebar-content #sidebar {
  1235. float: left;
  1236. }
  1237.  
  1238. .content-sidebar-sidebar #sidebar-alt {
  1239. float: right;
  1240. }
  1241.  
  1242. .sidebar .widget {
  1243. margin: 0 0 30px;
  1244. }
  1245.  
  1246. .textwidget p {
  1247. padding: 0 0 10px;
  1248. }
  1249.  
  1250. .widget-area ol,
  1251. .widget-area ul {
  1252. margin: 5px 0 0 0;
  1253. }
  1254.  
  1255. .widget-area ol ol,
  1256. .widget-area ul ul {
  1257. margin: 0 0 0 15px;
  1258. }
  1259.  
  1260. #home-middle ul li,
  1261. .widget-area ul li {
  1262. border-bottom: 1px dotted #ccc;
  1263. list-style-type: none;
  1264. margin: 0 0 3px;
  1265. padding: 0 0 3px 5px;
  1266. word-wrap: break-word;
  1267. }
  1268.  
  1269. #header .widget-area ul li {
  1270. border: none;
  1271. margin: 0;
  1272. padding: 0;
  1273. }
  1274.  
  1275.  
  1276. /* Dropdowns
  1277. ------------------------------------------------------------ */
  1278.  
  1279. #cat,
  1280. .widget_archive select {
  1281. -khtml-border-radius: 3px;
  1282. -moz-border-radius: 3px;
  1283. -webkit-border-radius: 3px;
  1284. background: url(images/gradient.png);
  1285. border-radius: 3px;
  1286. color: #999;
  1287. display: inline;
  1288. font-size: 12px;
  1289. font-style: italic;
  1290. margin: 5px 0 0;
  1291. width: 100%;
  1292. }
  1293.  
  1294.  
  1295. /* Featured Page / Post
  1296. ------------------------------------------------------------ */
  1297.  
  1298. .featuredpage,
  1299. .featuredpost {
  1300. clear: both;
  1301. overflow: hidden;
  1302. }
  1303.  
  1304. .featuredpage .page,
  1305. .featuredpost .post {
  1306. margin: 0;
  1307. overflow: hidden;
  1308. padding: 0;
  1309. }
  1310.  
  1311.  
  1312. /* User Profile
  1313. ------------------------------------------------------------ */
  1314.  
  1315. .user-profile {
  1316. overflow: hidden;
  1317. }
  1318.  
  1319.  
  1320. /* Buttons
  1321. ------------------------------------------------------------ */
  1322.  
  1323. div.gform_footer input.button,
  1324. .enews #subbutton,
  1325. .searchsubmit,
  1326. #submit {
  1327. background: url(images/button.png);
  1328. border: 1px solid #2bc2f7;
  1329. color: #fff;
  1330. cursor: pointer;
  1331. font-family: 'Droid Sans', arial, serif;
  1332. font-size: 12px;
  1333. font-weight: bold;
  1334. padding: 5px 6px;
  1335. text-decoration: none;
  1336. text-shadow: #0b87d9 1px 1px;
  1337. text-transform: uppercase;
  1338. }
  1339.  
  1340. div.gform_footer input.button:hover,
  1341. .enews #subbutton:hover,
  1342. .searchsubmit:hover,
  1343. #submit:hover {
  1344. background: url(images/button.png) 0 -28px;
  1345. text-shadow: #0b87d9 1px 1px;
  1346. color: #fff;
  1347. text-decoration: none;
  1348. }
  1349.  
  1350.  
  1351. /* Search Form
  1352. ------------------------------------------------------------ */
  1353.  
  1354. #header .searchform {
  1355. float: right;
  1356. padding: 50px 0 0;
  1357. }
  1358.  
  1359. #nav .searchform {
  1360. float: right;
  1361. }
  1362.  
  1363. .s {
  1364. background: url(images/gradient.png);
  1365. color: #999;
  1366. font-family: 'Droid Sans', arial, serif;
  1367. font-size: 12px;
  1368. margin: 5px 2px 0 0;
  1369. padding: 6px;
  1370. width: 190px;
  1371. }
  1372.  
  1373. #header .s {
  1374. margin: 5px 0 0;
  1375. width: 250px;
  1376. }
  1377.  
  1378.  
  1379. /* eNews and Update Widget
  1380. ------------------------------------------------------------ */
  1381.  
  1382. .enews #subbox {
  1383. background: url(images/gradient.png);
  1384. color: #999;
  1385. font-family: 'Droid Sans', arial, serif;
  1386. font-size: 12px;
  1387. margin: 5px 3px 0 0;
  1388. padding: 6px;
  1389. width: 210px;
  1390. }
  1391.  
  1392.  
  1393. /* Calendar Widget
  1394. ------------------------------------------------------------ */
  1395.  
  1396. #wp-calendar {
  1397. width: 100%;
  1398. }
  1399.  
  1400. #wp-calendar caption {
  1401. font-size: 12px;
  1402. font-style: italic;
  1403. padding: 2px 5px 0 0;
  1404. text-align: right;
  1405. }
  1406.  
  1407. #wp-calendar thead {
  1408. background-color: #f5f5f5;
  1409. font-weight: bold;
  1410. margin: 10px 0 0;
  1411. }
  1412.  
  1413. #wp-calendar td {
  1414. background-color: #f5f5f5;
  1415. padding: 2px;
  1416. text-align: center;
  1417.  
  1418.  
  1419. /* Footer Widgets
  1420. ------------------------------------------------------------ */
  1421.  
  1422. #footer-widgets {
  1423. -khtml-border-radius: 10px;
  1424. -moz-border-radius: 10px;
  1425. -webkit-border-radius: 10px;
  1426. background-color: #fff;
  1427. border: 1px solid #ddd;
  1428. border-radius: 10px;
  1429. clear: both;
  1430. font-size: 12px;
  1431. margin: 20px auto 0;
  1432. overflow: hidden;
  1433. padding: 25px 0 20px;
  1434. width: 958px;
  1435. }
  1436.  
  1437. #footer-widgets .wrap {
  1438. margin: 0 auto;
  1439. width: 900px;
  1440. }
  1441.  
  1442. #footer-widgets .widget {
  1443. background: none;
  1444. border: none;
  1445. padding: 0;
  1446. }
  1447.  
  1448. #footer-widgets p {
  1449. padding: 0 0 10px;
  1450. }
  1451.  
  1452. .footer-widgets-1 {
  1453. float: left;
  1454. padding: 0 30px 0 0;
  1455. width: 280px;
  1456. }
  1457.  
  1458. .footer-widgets-2 {
  1459. float: left;
  1460. width: 280px;
  1461. }
  1462.  
  1463. .footer-widgets-3 {
  1464. float: right;
  1465. width: 280px;
  1466. }
  1467.  
  1468.  
  1469. /* Footer
  1470. ------------------------------------------------------------ */
  1471.  
  1472. #footer {
  1473. -khtml-border-radius: 3px;
  1474. -moz-border-radius: 3px;
  1475. -webkit-border-radius: 3px;
  1476. border-radius: 3px;
  1477. clear: both;
  1478. font-size: 11px;
  1479. margin: 0 auto;
  1480. overflow: hidden;
  1481. padding: 15px 0;
  1482. text-shadow: #fff 1px 1px;
  1483. text-transform: uppercase;
  1484. width: 960px;
  1485. }
  1486.  
  1487. #footer p {
  1488. color: #555;
  1489. font-size: 11px;
  1490. }
  1491.  
  1492. #footer a,
  1493. #footer a:visited {
  1494. color: #555;
  1495. }
  1496.  
  1497. #footer a:hover {
  1498. color: #008dcf;
  1499. text-decoration: none;
  1500. }
  1501.  
  1502. #footer .gototop {
  1503. float: left;
  1504. padding: 0 0 0 5px;
  1505. width: 200px;
  1506. }
  1507.  
  1508. #footer .gototop a {
  1509. margin: 0;
  1510. padding: 2px 0 0 15px;
  1511. background: url(images/footer-top.png) no-repeat left center;
  1512. }
  1513.  
  1514. #footer .creds {
  1515. float: right;
  1516. padding: 0 5px 0 0;
  1517. text-align: right;
  1518. width: 745px;
  1519. }
  1520.  
  1521.  
  1522. /* Comments
  1523. ------------------------------------------------------------ */
  1524.  
  1525. #comments,
  1526. #respond {
  1527. font-size: 13px;
  1528. line-height: 20px;
  1529. margin: 0 0 15px;
  1530. overflow: hidden;
  1531. }
  1532.  
  1533. #comments p,
  1534. #respond p {
  1535. font-size: 13px;
  1536. line-height: 20px;
  1537. }
  1538.  
  1539. #author,
  1540. #comment,
  1541. #email,
  1542. #url {
  1543. font-size: 12px;
  1544. margin: 10px 5px 0 0;
  1545. padding: 5px;
  1546. width: 250px;
  1547. }
  1548.  
  1549. #comment {
  1550. height: 150px;
  1551. margin: 10px 0;
  1552. width: 98%;
  1553. }
  1554.  
  1555. .ping-list {
  1556. margin: 0 0 40px;
  1557. }
  1558.  
  1559. .comment-list ol,
  1560. .ping-list ol {
  1561. padding: 10px;
  1562. }
  1563.  
  1564. .comment-list li,
  1565. .ping-list li {
  1566. font-weight: bold;
  1567. margin: 15px 0 5px;
  1568. padding: 10px 5px 10px 10px;
  1569. }
  1570.  
  1571. .comment-list li ul li {
  1572. list-style-type: none;
  1573. margin-left: 10px;
  1574. margin-right: -6px;
  1575. }
  1576.  
  1577. .comment-list p,
  1578. .ping-list p {
  1579. margin: 10px 5px 10px 0;
  1580. }
  1581.  
  1582. .comment-list cite,
  1583. .ping-list cite {
  1584. font-style: normal;
  1585. }
  1586.  
  1587. .commentmetadata {
  1588. font-size: 11px;
  1589. }
  1590.  
  1591. .nocomments {
  1592. text-align: center;
  1593. }
  1594.  
  1595. #comments .navigation {
  1596. display: block;
  1597. }
  1598.  
  1599. .bypostauthor {
  1600. }
  1601.  
  1602. .thread-alt,
  1603. .thread-even {
  1604. background-color: #f5f5f5;
  1605. }
  1606.  
  1607. .alt,
  1608. .depth-1,
  1609. .even {
  1610. -khtml-border-radius: 3px;
  1611. -moz-border-radius: 3px;
  1612. -webkit-border-radius: 3px;
  1613. border-radius: 3px;
  1614. border: 1px solid #ddd;
  1615. }
  1616.  
  1617.  
  1618. /* Gravity Forms
  1619. ------------------------------------------------------------ */
  1620.  
  1621. div.gform_wrapper input,
  1622. div.gform_wrapper select,
  1623. div.gform_wrapper textarea {
  1624. color: #999;
  1625. font-family: 'Droid Sans', arial, serif !important;
  1626. font-size: 12px !important;
  1627. padding: 4px 5px !important;
  1628. }
  1629.  
  1630. div.gform_footer input.button {
  1631. color: #fff;
  1632. }
  1633.  
  1634. div.gform_wrapper .ginput_complex label {
  1635. font-size: 12px;
  1636. }
  1637.  
  1638. div.gform_wrapper li,
  1639. div.gform_wrapper form li {
  1640. margin: 0 0 10px;
  1641. }
  1642.  
  1643. div.gform_wrapper .gform_footer {
  1644. border: none;
  1645. margin: 0;
  1646. padding: 0;
  1647. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement