Guest User

Untitled

a guest
Feb 14th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.22 KB | None | 0 0
  1. /* INDEX:
  2.  
  3. =GENERAL
  4. =LAYOUT
  5. =HEADER
  6. =MENUS
  7. =POST
  8. =SITEMAP
  9. =CONTACT FORM
  10. =SLIDER
  11. =WP-PAGENAVI
  12. =FOOTER
  13. =WIDGETS
  14. =COMMENTS
  15. */
  16.  
  17. /* =GENERAL
  18. -------------------------------------------------------------- */
  19. @import url(http://fonts.googleapis.com/css?family=Oswald);
  20.  
  21. body {
  22. background: #F6F6F6 url(images/background.jpg) center top no-repeat fixed;
  23. color: #555555;
  24. }
  25.  
  26. a {
  27. color: #1175C5;
  28. text-decoration: underline;
  29. }
  30.  
  31. a:hover, a:focus {
  32. color: #0AA2FD;
  33. text-decoration: none;
  34. }
  35.  
  36. a:focus {
  37. outline: none;
  38. }
  39.  
  40. /* =LAYOUT
  41. -------------------------------------------------------------- */
  42.  
  43. #container {
  44. width: 1300px;
  45. margin: 0 auto;
  46. }
  47.  
  48. #main {
  49. padding: 15px;
  50. background: #fff;
  51. }
  52.  
  53. #main-fullwidth {
  54. padding: 15px;
  55. background: #fff;
  56. }
  57.  
  58. #content {
  59. overflow: hidden;
  60. float: left;
  61. width: 460px;
  62. margin-left: 195px;
  63. }
  64.  
  65. #sidebar-primary {
  66. overflow: hidden;
  67. float: left;
  68. width: 160px;
  69. margin-left: -635px;
  70. }
  71.  
  72. #sidebar-secondary {
  73. overflow: hidden;
  74. float: right;
  75. width: 280px;
  76. margin-left: 15px;
  77. }
  78.  
  79. /* =HEADER
  80. -------------------------------------------------------------- */
  81.  
  82. #header {
  83. height: 60px;
  84. padding:20px 0;
  85. }
  86.  
  87. .logo {
  88. float: left;
  89. }
  90.  
  91. .logo h1.site_title {
  92. margin: 0;
  93. padding:0;
  94. font-family: Arial, Helvetica, Sans-serif;
  95. font-size:48px;
  96. line-height: 40px;
  97. font-weight: bold;
  98. }
  99.  
  100. .logo h1.site_title a, .logo h1.site_title a:hover {
  101. color: #333;
  102. text-decoration: none;
  103. }
  104.  
  105. .logo h2.site_description {
  106. margin: 0;
  107. padding:0;
  108. color: #999;
  109. font-family: Arial, Helvetica, Sans-serif;
  110. font-size:14px;
  111. line-height: 14px;
  112. }
  113.  
  114. .header-right {
  115. float: right;
  116. }
  117.  
  118. #top-social-profiles {
  119. padding-top: 10px;
  120. height: 32px;
  121. text-align: right;
  122.  
  123. }
  124. #top-social-profiles img {
  125. margin: 0 0 0 6px !important;
  126. }
  127.  
  128. #top-social-profiles img:hover {
  129. opacity: 0.8;
  130. }
  131. #top-social-profiles .widget-container {
  132. background: none;
  133. padding: 0;
  134. border: 0;
  135. }
  136.  
  137. /* =MENUS
  138. -------------------------------------------------------------- */
  139.  
  140. /* Menu Primary
  141. ----------------------------*/
  142.  
  143. .menu-primary-container {
  144. float: right;
  145. padding:0;
  146. position:relative;
  147. height: 36px;
  148. background: none;
  149. z-index: 400;
  150. }
  151.  
  152. .menu-primary {
  153. }
  154.  
  155. .menu-primary ul {
  156. min-width: 160px;
  157. }
  158.  
  159. /* First Level - Menu Primary */
  160.  
  161. .menu-primary li a {
  162. color: #292929;
  163. padding: 12px 15px 11px 15px;
  164. text-decoration: none;
  165. font-family: 'Oswald', sans-serif;
  166. font-size: 13px;
  167. text-transform: uppercase;
  168. font-weight: normal;
  169. }
  170.  
  171. .menu-primary li a:hover, .menu-primary li a:active, .menu-primary li a:focus,
  172. .menu-primary li:hover > a, .menu-primary li.current-cat > a, .menu-primary li.current_page_item > a, .menu-primary li.current-menu-item > a {
  173. color: #0E6DC1;
  174. outline: 0;
  175. background: none;
  176. }
  177.  
  178. /* Child Levels - Menu Primary */
  179.  
  180. .menu-primary li li a {
  181. color: #fff;
  182. text-transform: none;
  183. background: #1781CC;
  184. padding: 10px 15px;
  185. margin: 0;
  186. border: 0;
  187. font-weight: normal;
  188. }
  189.  
  190. .menu-primary li li a:hover, .menu-primary li li a:active, .menu-primary li li a:focus,
  191. .menu-primary li li:hover > a, .menu-primary li li.current-cat > a, .menu-primary li li.current_page_item > a, .menu-primary li li.current-menu-item > a {
  192. color: #fff;
  193. background: #239CDA;
  194. outline: 0;
  195. border-bottom:0;
  196. text-decoration: none;
  197. }
  198.  
  199. /* Arrows Menu Primary */
  200.  
  201. .menu-primary a.sf-with-ul {
  202. padding-right: 20px;
  203. min-width: 1px;
  204. }
  205. .menu-primary .sf-sub-indicator {
  206. position: absolute;
  207. display: block;
  208. overflow: hidden;
  209. right: 0;
  210. top: 0;
  211. padding: 11px 10px 0 0;
  212. }
  213.  
  214. .menu-primary li li .sf-sub-indicator {
  215. padding: 9px 10px 0 0;
  216. }
  217.  
  218. /* Shadows Menu Primary */
  219.  
  220. .wrap-menu-primary .sf-shadow ul {
  221. background: url('images/menu-primary-shadow.png') no-repeat bottom right;
  222. }
  223.  
  224. /* Menu Secondary
  225. ----------------------------*/
  226.  
  227. .menu-secondary-container {
  228. position:relative;
  229. height: 54px;
  230. z-index: 300;
  231. background: url(images/menu-secondary-bg.png) left 3px repeat-x;
  232. padding: 3px 12px 0 12px;
  233. margin: 0 -12px -16px -12px;
  234. }
  235.  
  236. .menu-secondary {}
  237.  
  238. .menu-secondary ul {
  239. min-width: 160px;
  240. }
  241.  
  242. /* First Level - Menu Secondary */
  243. .menu-secondary li a {
  244. color: #FEFEFE;
  245. padding: 13px 15px 12px 15px;
  246. text-decoration: none;
  247. font-family: 'Oswald', sans-serif;
  248. font-size: 13px;
  249. text-transform: uppercase;
  250. font-weight: normal;
  251.  
  252. }
  253.  
  254. .menu-secondary li a:hover, .menu-secondary li a:active, .menu-secondary li a:focus,
  255. .menu-secondary li:hover > a, .menu-secondary li.current-cat > a, .menu-secondary li.current_page_item > a, .menu-secondary li.current-menu-item > a {
  256. color: #FFFFFF;
  257. background: url(images/menu-secondary-hover.png) left top repeat-x;
  258. outline: 0;
  259. border-top: 3px solid #1876C6;
  260. margin-top: -3px;
  261. }
  262.  
  263. /* Child Levels - Menu Secondary */
  264.  
  265. .menu-secondary li li a {
  266. color: #fff;
  267. background: #0A8FD5;
  268. padding: 10px 15px;
  269. text-transform: none;
  270. margin: 0;
  271. font-weight: normal;
  272. margin-top: 0;
  273. }
  274.  
  275. .menu-secondary li li a:hover, .menu-secondary li li a:active, .menu-secondary li li a:focus,
  276. .menu-secondary li li:hover > a, .menu-secondary li li.current-cat > a, .menu-secondary li li.current_page_item > a, .menu-secondary li li.current-menu-item > a {
  277. color: #fff;
  278. background: #0EA0DE;
  279. outline: 0;
  280. margin-top: 0;
  281. border-top: 0;
  282. }
  283.  
  284. /* Arrows - Menu Secondary */
  285.  
  286. .menu-secondary a.sf-with-ul {
  287. padding-right: 26px;
  288. min-width: 1px;
  289. }
  290. .menu-secondary .sf-sub-indicator {
  291. position: absolute;
  292. display: block;
  293. overflow: hidden;
  294. right: 0;
  295. top: 0;
  296. padding: 12px 13px 0 0;
  297. }
  298.  
  299. .menu-secondary li li .sf-sub-indicator {
  300.  
  301. padding: 9px 13px 0 0;
  302. }
  303.  
  304. /* Shadows - Menu Secondary */
  305.  
  306. .wrap-menu-secondary .sf-shadow ul {
  307. background: url('images/menu-secondary-shadow.png') no-repeat bottom right;
  308. }
  309.  
  310. /* =POST
  311. -------------------------------------------------------------- */
  312.  
  313. /* Post General
  314. ----------------------------*/
  315.  
  316. .post {
  317. margin-bottom: 15px;
  318. border-bottom: 0;
  319. }
  320.  
  321. .page, .post-single {
  322. border-bottom: 0;
  323. margin-bottom: 0;
  324. }
  325.  
  326. .title {
  327. color: #333333;
  328. margin: 0 0 10px 0;
  329. padding: 0;
  330. font-family: 'Oswald', sans-serif;
  331. font-size: 20px;
  332. line-height: 20px;
  333. font-weight: normal;
  334. }
  335.  
  336. .title a {
  337. color: #333333;
  338. text-decoration: none;
  339. }
  340.  
  341. .title a:hover {
  342. color: #1A88CF;
  343. text-decoration: none;
  344. }
  345.  
  346. .entry {
  347. line-height: 20px;
  348. }
  349.  
  350. .featured_image {
  351. padding: 6px;
  352. border: 1px solid #ccc;
  353. background: #fff;
  354. }
  355.  
  356. .page-title {
  357. color: #333;
  358. margin: 0px 0 10px 0;
  359. padding: 0 0 10px 0;
  360. font-weight: normal;
  361. text-transform: uppercase;
  362. font-size: 20px;
  363. font-family: 'Oswald', sans-serif;
  364. border-bottom: 2px solid #333;
  365. }
  366.  
  367. /* Post Metas
  368. ----------------------------*/
  369.  
  370. .postmeta-primary {
  371. color: #999999;
  372. font-size: 12px;
  373. line-height: 18px;
  374. padding: 0 0 10px 0;
  375. }
  376.  
  377. .postmeta-secondary {
  378. color: #999999;
  379. font-size: 12px;
  380. line-height: 18px;
  381. padding: 0 0 10px 0;
  382. }
  383.  
  384. .postmeta-primary span, .postmeta-secondary span {
  385. background: url(images/meta-separator.png) left center no-repeat;
  386. padding:3px 0 3px 10px;
  387. }
  388.  
  389. .postmeta-primary span:first-child, .postmeta-secondary span:first-child {
  390. background: none;
  391. padding-left: 0;
  392. }
  393.  
  394. /* Read More
  395. ----------------------------*/
  396.  
  397. .readmore {
  398. margin-bottom: 15px;
  399. float: right;
  400. }
  401.  
  402. .readmore a {
  403. color: #167FCB;
  404. background: #EBECED;
  405. padding: 8px 14px;
  406. font-size: 12px;
  407. line-height: 12px;
  408. display: inline-block;
  409. text-decoration: none;
  410. text-transform: uppercase;
  411. }
  412.  
  413. .readmore a:hover {
  414. color: #fff;
  415. background: #167FCB;
  416. text-decoration: none;
  417. }
  418.  
  419. /* =SITEMAP
  420. -------------------------------------------------------------- */
  421. .sitemap {
  422. }
  423.  
  424. .sitemap-col {
  425. width: 30%;
  426. padding: 0 0 0 10px;
  427. }
  428.  
  429. .sitemap-col-archives {
  430. width: 45%;
  431. padding: 0 0 0 10px;
  432. }
  433.  
  434. .sitemap h2 {
  435. font-size: 18px;
  436. font-weight: bold;
  437. border-bottom: 2px solid #ddd;
  438. padding: 0 0 10px 0;
  439. margin: 0 0 10px 0;
  440. }
  441.  
  442. .sitemap h3 {
  443. font-size: 14px;
  444. font-weight: bold;
  445. padding: 0;
  446. margin: 0 0 10px 0;
  447. }
  448.  
  449. .sitemap-list {
  450. font-size: 13px;
  451. line-height: 22px;
  452. }
  453.  
  454. .sitemap-list, .sitemap-list ul {
  455. padding: 0 0 0 20px;
  456. }
  457.  
  458. /* =CONTACT FORM
  459. -------------------------------------------------------------- */
  460. .contact-form {
  461. }
  462.  
  463. .contact-form-label {
  464. width: 90px;
  465. font-weight: bold;
  466. font-size: 14px;
  467. padding: 7px 0;
  468. }
  469.  
  470. .contact-form-input {
  471. margin-left: 90px;
  472. }
  473.  
  474. .contact-form input[type=text] {
  475. padding: 6px;
  476. width: 60%;
  477. margin-bottom: 20px;
  478. border: 1px solid #ccc;
  479. background: #fff;
  480. }
  481.  
  482. .contact-form input[type=submit] {
  483. padding: 5px 50px;
  484. border: 1px solid #ccc;
  485. background: #eee;
  486. }
  487. .contact-form textarea {
  488. width: 96%;
  489. padding: 6px;
  490. height: 160px;
  491. margin-bottom: 20px;
  492. border: 1px solid #ccc;
  493. background: #fff;
  494. }
  495.  
  496. .contact-form-required {
  497. color: red;
  498. }
  499.  
  500. /* =SLIDER
  501. -------------------------------------------------------------- */
  502.  
  503. .fp-slider {
  504. margin: 0 0 15px 0;
  505. }
  506.  
  507. .fp-slides-container {}
  508.  
  509. .fp-slides, .fp-thumbnail, .fp-prev-next, .fp-nav {
  510. width: 460px;
  511. }
  512.  
  513. .fp-slides, .fp-thumbnail {
  514. height: 300px;
  515. overflow: hidden;
  516. position: relative;
  517. }
  518.  
  519. .fp-title {
  520. font-family: Arial, Helvetica, Sans-serif;
  521. color: #fff;
  522. font-size: 18px;
  523. font-weight: bold;
  524. padding: 0 0 2px 0;
  525. margin: 0;
  526. }
  527.  
  528. .fp-title a, .fp-title a:hover {
  529. color: #fff;
  530. text-decoration: none;
  531. }
  532.  
  533. .fp-content {
  534. position: absolute;
  535. bottom: 0;
  536. left: 0;
  537. right: 0;
  538. background: #111;
  539. opacity: 0.7;
  540. filter: alpha(opacity = 70);
  541. padding: 10px 15px;
  542. overflow: hidden;
  543. }
  544.  
  545. .fp-content p {
  546. color: #fff;
  547. padding: 0;
  548. margin: 0;
  549. line-height: 18px;
  550. }
  551.  
  552. .fp-more, .fp-more:hover{
  553. color: #fff;
  554. font-weight: bold;
  555. }
  556.  
  557. .fp-nav {
  558. height: 12px;
  559. text-align: center;
  560. padding: 10px 0;
  561. background: #333;
  562. }
  563.  
  564. .fp-pager a {
  565. background-image: url(images/featured-pager.png);
  566. cursor:pointer;
  567. margin: 0 8px 0 0;
  568. padding: 0;
  569. display: inline-block;
  570. width: 12px;
  571. height: 12px;
  572. overflow: hidden;
  573. text-indent: -999px;
  574. background-position: 0 0;
  575. float: none;
  576. line-height: 1;
  577. opacity: 0.7;
  578. filter: alpha(opacity = 70);
  579. }
  580.  
  581. .fp-pager a:hover, .fp-pager a.activeSlide {
  582. text-decoration: none;
  583. background-position: 0 -112px;
  584. opacity: 1.0;
  585. filter: alpha(opacity = 100);
  586. }
  587.  
  588. .fp-prev-next-wrap {
  589. position: relative;
  590. z-index: 200;
  591. }
  592.  
  593. .fp-prev-next {
  594. position: absolute;
  595. bottom: 130px;
  596. left: 0;
  597. right: 0;
  598. height: 37px;
  599. }
  600.  
  601. .fp-prev {
  602. float:left;
  603. margin-left: 14px;
  604. width:37px;
  605. height:37px;
  606. background:url(images/featured-prev.png) left top no-repeat;
  607. opacity: 0.6;
  608. filter: alpha(opacity = 60);
  609. }
  610.  
  611. .fp-prev:hover {
  612. opacity: 0.8;
  613. filter: alpha(opacity = 80);
  614. }
  615.  
  616. .fp-next {
  617. float:right;
  618. width:36px;
  619. height:37px;
  620. margin-right: 14px;
  621. background:url(images/featured-next.png) right top no-repeat;
  622. opacity: 0.6;
  623. filter: alpha(opacity = 60);
  624. }
  625.  
  626. .fp-next:hover {
  627. opacity: 0.8;
  628. filter: alpha(opacity = 80);
  629. }
  630.  
  631. /* =WP-PAGENAVI
  632. -------------------------------------------------------------- */
  633.  
  634. .wp-pagenavi {
  635. float: left;
  636. }
  637.  
  638. .wp-pagenavi a, .wp-pagenavi span {
  639. text-decoration: none;
  640. padding: 5px 8px;
  641. margin: 2px;
  642. font-size: 15px;
  643. line-height: 15px;
  644. float: left;
  645. }
  646.  
  647. .wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active {
  648. color: #167FCB;
  649. background:none;
  650. }
  651.  
  652. .wp-pagenavi span.current {
  653. font-weight: bold;
  654. color: #fff;
  655. background:#167FCB;
  656. }
  657.  
  658. .wp-pagenavi a:hover {
  659. color: #167FCB;
  660. background:#EBECED;
  661. }
  662.  
  663. .wp-pagenavi span.pages {
  664. color: #167FCB;
  665. background: none;
  666. padding: 4px 8px 4px 0;
  667. }
  668.  
  669. .wp-pagenavi span.extend {
  670. background:transparent;
  671. color: #167FCB;
  672. background: none;
  673. }
  674.  
  675. /* =FOOTER
  676. -------------------------------------------------------------- */
  677.  
  678. #footer {
  679. margin-bottom:15px;
  680. }
  681.  
  682. #copyrights {
  683. color: #fff;
  684. background: #167FCB;
  685. text-align: center;
  686. padding: 20px 0;
  687. }
  688.  
  689. #copyrights a {
  690. color: #fff;
  691. }
  692.  
  693. #copyrights a:hover {
  694. color: #fff;
  695. text-decoration: none;
  696. }
  697.  
  698. #credits {
  699. color: #135E94;
  700. text-align: center;
  701. font-size: 11px;
  702. padding: 10px 0 0 0;
  703. }
  704.  
  705. #credits a {
  706. color: #135E94;
  707. text-decoration: none;
  708. }
  709.  
  710. #credits a:hover {
  711. text-decoration: none;
  712. color: #135E94;
  713. }
  714.  
  715. /* Footer Widgets
  716. ----------------------------*/
  717.  
  718. #footer-widgets {
  719. background: #FFFFFF;
  720. padding: 20px 0 0 0;
  721. border-top: 2px solid #F0F0F0;
  722. }
  723.  
  724. .footer-widget-box {
  725. width: 300px;
  726. float: left;
  727. margin-left: 15px;
  728. }
  729.  
  730. .footer-widget-box-last {
  731.  
  732. }
  733.  
  734. /* Footer Widgets Color */
  735.  
  736. #footer-widgets .widget-container {
  737.  
  738. }
  739.  
  740. /* Footer Widgets Links */
  741.  
  742. #footer-widgets .widget-container a {
  743.  
  744. }
  745.  
  746. #footer-widgets .widget-container a:hover {
  747.  
  748. }
  749.  
  750. /* Footer Widget Title */
  751.  
  752. #footer-widgets .widgettitle {
  753.  
  754. }
  755.  
  756. #footer-widgets .widgettitle, #footer-widgets .widgettitle a, #footer-widgets .widgettitle a:hover {
  757.  
  758. }
  759.  
  760. /* Footer List Items */
  761.  
  762. #footer-widgets .widget ul li {
  763.  
  764. }
  765.  
  766. /* Footer Widgets Tabs */
  767.  
  768. #footer-widgets .tabs-widget li a {
  769.  
  770. }
  771.  
  772. #footer-widgets .tabs-widget li a:hover, #footer-widgets .tabs-widget li a.tabs-widget-current {
  773.  
  774. }
  775.  
  776. /* Footer Widgets Seaarch */
  777.  
  778. #footer-widgets #search {
  779.  
  780. }
  781.  
  782. #footer-widgets #search #s {
  783.  
  784. }
  785.  
  786. /* =WIDGETS
  787. -------------------------------------------------------------- */
  788.  
  789. /* Widgets Defaults
  790. ----------------------------*/
  791.  
  792. .widget-container {
  793. list-style-type: none;
  794. list-style: none;
  795. margin: 0 0 15px 0;
  796. padding: 0;
  797. color: #313131;
  798. font-size: 13px;
  799. }
  800.  
  801. .widget-container a {
  802. color: #313131;
  803. text-decoration: none;
  804. }
  805.  
  806. .widget-container a:hover {
  807. color: #1776C5;
  808. text-decoration: none;
  809. }
  810.  
  811. .widgettitle {
  812. border-bottom: 3px solid #0F71C3;
  813. margin: 0 0 10px 0;
  814. padding: 10px 0 6px 0;
  815. }
  816.  
  817. .widgettitle, .widgettitle a, .widgettitle a:hover {
  818. color: #0F64AA;
  819. font-size: 16px;
  820. line-height: 16px;
  821. font-family: 'Oswald', sans-serif;
  822. font-weight: normal;
  823. text-decoration: none;
  824. text-transform: uppercase;
  825. }
  826.  
  827. .widget ul {
  828. list-style-type: none;
  829. list-style: none;
  830. margin: 0;
  831. padding: 0;
  832. }
  833.  
  834. .widget ul li {
  835. padding: 0 0 9px 12px;
  836. margin: 0 0 8px 0;
  837. background: url(images/widget-list.png) left 3px no-repeat;
  838.  
  839. }
  840.  
  841. /* Search
  842. ----------------------------*/
  843.  
  844. #search {
  845. border: 1px solid #D8D8D8;
  846. background: #fff url(images/search.png) 99% 50% no-repeat;
  847. text-align: left;
  848. padding: 6px 24px 6px 6px;
  849. }
  850.  
  851. #search #s {
  852. background: none;
  853. color: #979797;
  854. border: 0;
  855. width: 100%;
  856. padding: 0;
  857. margin: 0;
  858. outline: none;
  859. }
  860.  
  861. #content-search {
  862. width: 300px;
  863. padding: 15px 0;
  864. }
  865.  
  866. /* Wp Calendar
  867. ----------------------------*/
  868.  
  869. #wp-calendar td:hover, #wp-calendar #today {
  870. background: #0F71C3;
  871. color: #fff;
  872. }
  873.  
  874. #wp-calendar td:hover a, #wp-calendar #today a {
  875. color: #fff;
  876. }
  877.  
  878. /* Text Widget
  879. ----------------------------*/
  880.  
  881. .textwidget {
  882. line-height: 18px;
  883. }
  884.  
  885. /* 125x125 Banners Widget
  886. ----------------------------*/
  887.  
  888. .banners-125 {
  889. text-align: center;
  890. margin-bottom: -10px;
  891. }
  892.  
  893. .banners-125 img {
  894. margin: 0 5px 5px 5px;
  895. }
  896.  
  897. /* Posts Widget
  898. ----------------------------*/
  899.  
  900. .posts-widget ul {
  901. list-style-type: none;
  902. list-style: none;
  903. padding: 0;
  904. margin: 10px 0 0 0;
  905. }
  906.  
  907. .posts-widget ul li {
  908. list-style-type: none;
  909. list-style: none;
  910. padding: 0 0 15px 0;
  911. margin: 0 0 15px 0;
  912. border-bottom: 0;
  913. }
  914.  
  915. .posts-widgettitle {
  916. font-weight: bold;
  917. padding: 0 0 5px 0;
  918. margin: 0;
  919. font-family: Arial, Helvetica, Sans-serif;
  920. font-size: 14px;
  921. }
  922.  
  923. .posts-widgettitle a {}
  924.  
  925. .posts-widgettitle a:hover {}
  926.  
  927. .posts-widget-meta {
  928. font-style: italic;
  929. padding: 0 0 5px 0;
  930. }
  931.  
  932. .posts-widget-entry {
  933. font-family: Arial, Helvetica, Sans-serif;
  934. line-height: 20px;
  935. }
  936.  
  937. .posts-widget-more {
  938. font-weight: bold;
  939. }
  940.  
  941. .posts-widget-more:hover {}
  942.  
  943. .posts-widget-featured-image {
  944. border: 1px solid #D8D8D8;
  945. padding: 4px;
  946. background-color: #fff;
  947. }
  948.  
  949. .posts-widget .alignleft {
  950. margin: 0 8px 8px 0;
  951. }
  952.  
  953. .posts-widget .alignright {
  954. margin: 0 0 8px 8px;
  955. }
  956.  
  957. .posts-widget .aligncenter {
  958. margin-bottom: 8px;
  959. }
  960.  
  961. /* Comments Widget
  962. ----------------------------*/
  963.  
  964. .comments-widget ul {
  965. list-style-type: none;
  966. list-style: none;
  967. padding: 0;
  968. margin: 10px 0 0 0;
  969. }
  970.  
  971. .comments-widget ul li {
  972. list-style-type: none;
  973. list-style: none;
  974. padding: 0 0 10px 0;
  975. margin: 0 0 10px 0;
  976. border-bottom: 0;
  977. }
  978.  
  979. .comments-widget-author {
  980. text-decoration: none;
  981. font-weight: bold;
  982. padding: 0 0 5px 0;
  983. margin: 0;
  984. }
  985.  
  986. .comments-widget-author:hover {}
  987.  
  988. .comments-widget-entry {
  989. font-family: Arial, Helvetica, Sans-serif;
  990. line-height: 20px;
  991. }
  992.  
  993. .comments-widget-more {
  994. font-weight: bold;
  995. }
  996.  
  997. .comments-widget-more:hover {}
  998.  
  999. .comments-widget-avatar {
  1000. border: 1px solid #D8D8D8;
  1001. padding: 4px;
  1002. background-color: #fff;
  1003. }
  1004.  
  1005. .comments-widget .alignleft {
  1006. margin: 0 8px 0 0;
  1007. }
  1008.  
  1009. .comments-widget .alignright {
  1010. margin: 0 0 0 8px;
  1011. }
  1012.  
  1013. .comments-widget .aligncenter {
  1014. margin-bottom: 8px;
  1015. }
  1016.  
  1017. /* Info Box Widget
  1018. ----------------------------*/
  1019.  
  1020. .infobox-widget ul {
  1021. list-style-type: none;
  1022. list-style: none;
  1023. padding: 0;
  1024. margin: 0;
  1025. }
  1026.  
  1027. .infobox-widget ul li {
  1028. list-style-type: none;
  1029. list-style: none;
  1030. padding: 0;
  1031. margin: 5px 0 0 0;
  1032. }
  1033.  
  1034. .infobox-widget ul li a {
  1035. text-decoration: none;
  1036. }
  1037.  
  1038. .infobox-widget-description {
  1039. line-height: 20px;
  1040. }
  1041.  
  1042. .infobox-widget-more {
  1043. font-weight: bold;
  1044. }
  1045.  
  1046. .infobox-widget-more:hover {
  1047. }
  1048.  
  1049. .infobox-widget .alignleft {
  1050. margin: 0 10px 10px 0;
  1051. }
  1052.  
  1053. .infobox-widget .alignright {
  1054. margin: 0 0 10px 10px;
  1055. }
  1056.  
  1057. .infobox-widget .aligncenter {
  1058. margin-bottom: 10px;
  1059. }
  1060.  
  1061. .infobox-widget .inbottom {
  1062. margin-top: 10px;
  1063. }
  1064.  
  1065. /* Social Profiles Widget
  1066. ----------------------------*/
  1067. .social-profiles-widget img {
  1068. margin: 0 4px 0 0;
  1069. }
  1070.  
  1071. .social-profiles-widget img:hover {
  1072. opacity: 0.8;
  1073. }
  1074.  
  1075. /* Tabs Widget
  1076. ----------------------------*/
  1077.  
  1078. .tabs-widget {
  1079. list-style: none;
  1080. list-style-type: none;
  1081. margin: 0 0 10px 0;
  1082. padding: 0;
  1083. height: 26px;
  1084. }
  1085.  
  1086. .tabs-widget li {
  1087. list-style: none;
  1088. list-style-type: none;
  1089. margin: 0 0 0 4px;
  1090. padding: 0;
  1091. float: left;
  1092. }
  1093.  
  1094. .tabs-widget li:first-child {
  1095. margin: 0;
  1096. }
  1097.  
  1098. .tabs-widget li a {
  1099. color: #1885CD;
  1100. background: #EBECED;
  1101. padding: 6px 16px;
  1102. font-family: Arial, Helvetica, Sans-serif;
  1103. font-weight: bold;
  1104. display: block;
  1105. text-decoration: none;
  1106. font-size: 12px;
  1107. line-height: 12px;
  1108. }
  1109.  
  1110. .tabs-widget li a:hover, .tabs-widget li a.tabs-widget-current {
  1111. background: #167FCB;
  1112. color: #fff;
  1113. }
  1114.  
  1115. .tabs-widget-content {
  1116. }
  1117.  
  1118. /* Tweets Widget
  1119. ----------------------------*/
  1120.  
  1121. .tweets-widget ul {
  1122. list-style-type: none;
  1123. list-style: none;
  1124. margin: 0;
  1125. padding: 0;
  1126. line-height: 20px;
  1127. font-family: Arial, Helvetica, Sans-serif;
  1128. }
  1129.  
  1130. .tweets-widget ul li {
  1131. list-style-type: none;
  1132. list-style: none;
  1133. padding: 0;
  1134. margin: 15px 0 0 0;
  1135. }
  1136.  
  1137. .tweets-widget ul li:first-child {
  1138. margin-top: 5px;
  1139. }
  1140.  
  1141. .tweets-widget li.tweets-bird {
  1142. padding-left: 24px;
  1143. background: url(images/tweets.png) left 2px no-repeat;
  1144. }
  1145.  
  1146. .tweets-widget a {}
  1147.  
  1148. .tweets-widget a:hover {}
  1149.  
  1150. a.tweets-widget-time {
  1151. text-decoration: underline;
  1152. }
  1153.  
  1154. a.tweets-widget-time:hover {
  1155. text-decoration: none;
  1156. }
  1157.  
  1158. /* Facebook Widget
  1159. ----------------------------*/
  1160.  
  1161. .facebook-widget {
  1162. list-style-type: none;
  1163. list-style: none;
  1164. margin: 0;
  1165. padding: 0;
  1166. }
  1167.  
  1168. /* =COMMENTS
  1169. -------------------------------------------------------------- */
  1170.  
  1171. #comments {
  1172. margin-bottom: 15px;
  1173. }
  1174.  
  1175. #comments p {
  1176. margin: 5px 0 10px 0;
  1177. }
  1178.  
  1179. h3#comments-title {
  1180. font-weight: bold;
  1181. font-size: 20px;
  1182. padding: 0;
  1183. margin: 0 0 15px 0;
  1184. }
  1185.  
  1186. .commentlist {
  1187. list-style: none;
  1188. margin: 0;
  1189. padding: 0;
  1190. }
  1191.  
  1192. .commentlist li.comment {
  1193. line-height: 24px;
  1194. margin: 0 0 15px 0;
  1195. padding: 0 0 0 0px;
  1196. position: relative;
  1197. }
  1198.  
  1199. .commentlist li:last-child {
  1200. border-bottom:none;
  1201. margin-bottom:0;
  1202. }
  1203.  
  1204. #comments .comment-body ul,
  1205. #comments .comment-body ol {
  1206. margin-bottom: 15px;
  1207. }
  1208.  
  1209. #comments .comment-body blockquote p:last-child {
  1210. margin-bottom: 15px;
  1211. }
  1212.  
  1213. .commentlist .avatar {
  1214. border: 3px solid #ffffff;
  1215. margin-right: 10px;
  1216. width: 40px;
  1217. height: 40px;
  1218. vertical-align: middle;
  1219. margin-bottom: 2px;
  1220. }
  1221.  
  1222. .comment-author {
  1223. padding: 5px;
  1224. display: block;
  1225. background: #F2F2F2;
  1226. border: 1px solid #DFDFDF;
  1227. -moz-border-radius: 4px;
  1228. -khtml-border-radius: 4px;
  1229. -webkit-border-radius: 4px;
  1230. border-radius: 4px;
  1231. }
  1232.  
  1233. .comment-author cite {
  1234. font-style: normal;
  1235. font-weight: bold;
  1236. }
  1237.  
  1238. .comment-author .says {
  1239. font-style: italic;
  1240. }
  1241.  
  1242. .fn, .fn a:link, .fn a:hover, .fn a:visited {
  1243. font-family: Arial, Helvetica, Sans-serif;
  1244. font-size: 16px;
  1245. font-style: normal;
  1246. font-weight: bold;
  1247. text-decoration: none;
  1248. }
  1249.  
  1250. .comment-meta {
  1251. margin: -23px 0 0 65px;
  1252. display: block;
  1253. font-size: 11px;
  1254. padding:0;
  1255. }
  1256.  
  1257. .comment-meta a:link,
  1258. .comment-meta a:visited {
  1259. text-decoration: none;
  1260. }
  1261. .commentlist .bypostauthor {
  1262. }
  1263. .reply {
  1264. text-align: right;
  1265. margin-bottom: 10px;
  1266. }
  1267.  
  1268. .comment-reply-link {
  1269. font-size: 11px;
  1270. font-weight: normal;
  1271. text-decoration: none;
  1272. background: #EDEDED;
  1273. color: #333;
  1274. padding: 2px 8px;
  1275. -moz-border-radius: 3px;
  1276. -khtml-border-radius: 3px;
  1277. -webkit-border-radius: 3px;
  1278. border-radius: 3px;
  1279. border: 1px solid #999999;
  1280. }
  1281.  
  1282. .comment-reply-link:hover {
  1283. background: #F5F5F5;
  1284. color: #333;
  1285. }
  1286.  
  1287. .commentlist .children {
  1288. list-style: none;
  1289. margin: 0;
  1290. }
  1291.  
  1292. /* Children */
  1293.  
  1294. .commentlist .children li {
  1295. border: none;
  1296. margin: 0;
  1297. }
  1298.  
  1299. .nocomments {
  1300. display: none;
  1301. }
  1302.  
  1303. #comments .pingback {
  1304. margin-bottom: 18px;
  1305. padding-bottom: 18px;
  1306. }
  1307.  
  1308. .commentlist li.comment+li.pingback {
  1309. margin-top: -6px;
  1310. }
  1311.  
  1312. #comments .pingback p {
  1313. font-size: 12px;
  1314. line-height: 18px;
  1315. display:block;
  1316. margin: 0;
  1317. }
  1318.  
  1319. #comments .pingback .url {
  1320. font-style: italic;
  1321. font-size: 13px;
  1322. }
  1323.  
  1324. /* Comments form */
  1325.  
  1326. #respond {
  1327. overflow: hidden;
  1328. position: relative;
  1329. margin-bottom: 15px;
  1330. }
  1331.  
  1332. h3#reply-title {
  1333. font-weight: bold;
  1334. font-size: 20px;
  1335. padding: 0;
  1336. margin: 0 0 15px 0;
  1337. }
  1338.  
  1339. #respond .required {
  1340. color:#FF4B33;
  1341. }
  1342.  
  1343. #respond .comment-notes {
  1344. margin-bottom: 1em;
  1345. }
  1346.  
  1347. .form-allowed-tags {
  1348. display: none;
  1349. }
  1350.  
  1351. .children #respond {
  1352. margin: 0 48px 0 0;
  1353. }
  1354.  
  1355. #comments-list #respond {
  1356. margin: 0 0 18px 0;
  1357. }
  1358.  
  1359. #comments-list ul #respond {
  1360. margin: 0;
  1361. }
  1362.  
  1363. #cancel-comment-reply-link {
  1364. font-size: 12px;
  1365. line-height: 18px;
  1366. font-weight: normal;
  1367. }
  1368.  
  1369. #respond .required {
  1370. color:#FF4B33;
  1371. font-weight:bold;
  1372. }
  1373.  
  1374. #respond label {
  1375. font-size: 12px;
  1376. font-weight: bold;
  1377. }
  1378.  
  1379. #respond input {
  1380. margin:10px 0 0 0;
  1381. width:98%;
  1382. }
  1383.  
  1384. #respond textarea {
  1385. width:98%;
  1386. margin:10px 0 0 0;
  1387. }
  1388.  
  1389. #respond .form-allowed-tags {
  1390. font-size: 12px;
  1391. line-height: 18px;
  1392. }
  1393.  
  1394. #respond .form-allowed-tags code {
  1395. font-size: 11px;
  1396. }
  1397.  
  1398. #respond input[type=submit] {
  1399. margin: 0;
  1400. }
  1401.  
  1402. #respond .form-submit {
  1403. margin: 0;
  1404. }
  1405.  
  1406. #respond .form-submit input {
  1407. width: auto;
  1408. font-size: 14px;
  1409. }
  1410. #respond dl {
  1411. margin: 0 0 10px;
  1412. }
  1413.  
  1414. #respond dt {
  1415. display: inline;
  1416. font-weight: normal;
  1417. }
  1418.  
  1419. #respond dd {
  1420. display: inline;
  1421. }
  1422.  
  1423. /* =END
  1424. -------------------------------------------------------------- */
Advertisement
Add Comment
Please, Sign In to add comment