Advertisement
landlubber

sliding-door style.css

May 23rd, 2011
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 23.69 KB | None | 0 0
  1. /* @override http://dubbo.org/wp-content/themes/slidingdoor/style.css */
  2.  
  3. /*
  4. Theme Name: Sliding Door
  5. Theme URI: http://mac-host.com/slidingdoor/
  6. Description: A unique template featuring sliding images in the header.  Uses a Custom Menu and Featured Images to create the sliding images. The theme has a comprehensive support forum at http://mac-host.com/support  
  7. Author: Wayne Connor
  8. Author URI:http://macintoshhowto.com/about
  9. Version: 2.6.1
  10. Tags: black, blue, three-columns, fixed-width, custom-header, theme-options, threaded-comments, sticky-post, photoblogging
  11. License: GNU General Public License v2.0
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13.  
  14. This theme is licensed under the GPL.
  15. Use it to make something cool, have fun, and share what you've learned with others.
  16. */
  17.  
  18.  
  19. /* =Reset default browser CSS.
  20. ---------------------- */
  21.  
  22. html, body, div, span, applet, object, iframe,
  23. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  24. a, abbr, acronym, address, big, cite, code,
  25. del, dfn, em, font, img, ins, kbd, q, s, samp,
  26. small, strike, strong, sub, sup, tt, var,
  27. b, u, i, center,
  28. dl, dt, dd, ol, ul, li,
  29. fieldset, form, label, legend,
  30. table, caption, tbody, tfoot, thead, tr, th, td {
  31.     background: transparent;
  32.     border: 0;
  33.     margin: 0;
  34.     padding: 0;
  35.     vertical-align: baseline;
  36. }
  37. body {
  38.     line-height: 1;
  39.     background: url(images/background.jpg) no-repeat;
  40. }
  41. h1, h2, h3, h4, h5, h6 {
  42.     /* clear: both; */
  43.     font-weight: normal;
  44. }
  45. ol, ul {
  46.     list-style: none;
  47. }
  48. blockquote {
  49.     quotes: none;
  50. }
  51. blockquote:before, blockquote:after {
  52.     content: '';
  53.     content: none;
  54. }
  55. del {
  56.     text-decoration: line-through;
  57. }
  58. /* tables still need 'cellspacing="0"' in the markup */
  59. table {
  60.     border-collapse: collapse;
  61.     border-spacing: 0;
  62. }
  63. a img {
  64.     border: none;
  65.     text-decoration: none;
  66. }
  67.  
  68. /* =Layout
  69. -------------------------------------------------------------- */
  70.  
  71. /*
  72. LAYOUT: Two columns
  73. DESCRIPTION: Two-column fixed layout with one sidebar right of content
  74. */
  75.  
  76.  
  77. #container {
  78.     margin-left: 220px;
  79.     margin-right: 220px;
  80. }
  81.  
  82. #content {
  83.     margin: 0;
  84.     float:left;
  85.     overflow: hidden;
  86.  
  87. }
  88. #sidebar1,
  89. #sidebar2 {
  90.     /*overflow: hidden;*/
  91.    
  92. }
  93.  
  94.  
  95. #sidebar1 {
  96.     font-weight: normal;
  97.     font-style: normal;
  98. }
  99.  
  100. #sidebar1 a{
  101.     font-weight: bold;
  102. }
  103.  
  104. #sidebar1{
  105.     overflow: hidden;
  106.     float: left;
  107.     width: 182px;
  108.  
  109. }
  110. #sidebar2 {
  111.     float:  right;
  112.     width: 182px;
  113.     overflow: hidden;
  114. }
  115.  
  116.  
  117. #footer {
  118.     clear: both;
  119.     width: 100%;
  120. }
  121.  
  122. /*
  123. LAYOUT: One column, no sidebar
  124. DESCRIPTION: One centered column with no sidebar
  125. */
  126.  
  127. .one-column #content {
  128.     margin: 0 auto;
  129.     width: 600px;
  130.     }
  131.  
  132. /*
  133. LAYOUT: Full width, no sidebar
  134. DESCRIPTION: Full width content with no sidebar; used for attachment pages
  135. */
  136.  
  137. .single-attachment #content {
  138.     margin: 0 auto;
  139.     width: 900px;
  140. }
  141.  
  142.  
  143. /* =Fonts
  144. -------------------------------------------------------------- */
  145. body,
  146. input,
  147. textarea,
  148. .page-title span,
  149. .pingback a.url {
  150.  
  151.     font-family:"Lucida Grande",Tahoma,"Lucida Sans Unicode",Verdana,sans-serif;
  152.     }
  153.    
  154. h3#comments-title,
  155. h3#reply-title,
  156. #access .menu,
  157. #access div.menu ul,
  158. #cancel-comment-reply-link,
  159. .form-allowed-tags,
  160. #site-info,
  161. #site-title,
  162. #wp-calendar,
  163. .comment-meta,
  164. .comment-body tr th,
  165. .comment-body thead th,
  166. .entry-content label,
  167. .entry-content tr th,
  168. .entry-content thead th,
  169. .entry-meta,
  170. .entry-utility,
  171. #respond label,
  172. .navigation,
  173. .page-title,
  174. .pingback p,
  175. .reply,
  176. .widget-title,
  177. .wp-caption-text,
  178. input[type=submit] {
  179.     font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  180.     color: white;
  181. }
  182.  
  183. #content .entry-title,
  184. {   color: white;
  185.  
  186.     }
  187.  
  188. pre {
  189.     font-family: "Courier 10 Pitch", Courier, monospace;
  190. }
  191. code {
  192.     font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  193. }
  194.  
  195.  
  196. /* =Structure
  197. -------------------------------------------------------------- */
  198.  
  199. /* The main theme structure */
  200. #access .menu-header,
  201. div.menu,
  202. #colophon,
  203. #branding,
  204. #wrapper {
  205.     margin: 0 auto;
  206.     width: 948px;
  207. }
  208. #wrapper {
  209.     margin-top: 20px;
  210.     padding: 0 20px;
  211.     position: relative;
  212.     background-color: #2D6C6B;
  213. }
  214.  
  215. /* Structure the footer area */
  216. #site-info {
  217.     float: left;
  218.     font-size: 14px;
  219.     font-weight: bold;
  220.     width: 700px;
  221. }
  222. #site-generator {
  223.     text-align: center;
  224. }
  225.  
  226.  
  227. /* =Global Elements
  228. -------------------------------------------------------------- */
  229.  
  230. /* Main global 'theme' and typographic styles */
  231. body {
  232.     background-color: #000;
  233. }
  234. body,
  235. input,
  236. textarea {
  237.     color: #fff;
  238.     font-size: 12px;
  239.     line-height: 18px;
  240. }
  241. hr {
  242.     background-color: #555;
  243.     border: 0;
  244.     clear: both;
  245.     height: 1px;
  246.     margin-bottom: 18px;
  247. }
  248.  
  249. /* Text elements */
  250. p {
  251.     margin-bottom: 18px;
  252.     font-size: 14px;
  253. }
  254. ul {
  255.     list-style: square;
  256.     margin: 0 0 18px 1.5em;
  257. }
  258. ol {
  259.     list-style: decimal;
  260.     margin: 0 0 18px 1.5em;
  261. }
  262. ol ol {
  263.     list-style: upper-alpha;
  264. }
  265. ol ol ol {
  266.     list-style: lower-roman;
  267. }
  268. ol ol ol ol {
  269.     list-style: lower-alpha;
  270. }
  271. ul ul,
  272. ol ol,
  273. ul ol,
  274. ol ul {
  275.     margin-bottom: 0;
  276. }
  277. dl {
  278.     margin: 0 0 24px 0;
  279. }
  280. dt {
  281.     font-weight: bold;
  282. }
  283. dd {
  284.     margin-bottom: 18px;
  285. }
  286. strong {
  287.     font-weight: bold;
  288. }
  289. cite,
  290. em,
  291. i {
  292.     font-style: italic;
  293. }
  294. big {
  295.     font-size: 131.25%;
  296. }
  297. ins {
  298.     background: #333;
  299.     text-decoration: none;
  300. }
  301. blockquote {
  302.     font-style: italic;
  303.     padding: 0 3em;
  304. }
  305.  
  306. blockquote { color:#ddd;
  307.     background: #000 url(images/blockquote.png) no-repeat 10px 1px;
  308.     width:80%; height:auto;
  309.     display:block;
  310.     margin: 0 0 15px 10px;
  311.     padding: 5px 25px 0px 75px;
  312. }
  313.  
  314.  
  315. blockquote cite,
  316. blockquote em,
  317. blockquote i {
  318.     font-style: normal;
  319. }
  320. pre {
  321.     background: #000;
  322.     color: #ddd;
  323.     line-height: 18px;
  324.     margin-bottom: 18px;
  325.     padding: 1.5em;
  326. }
  327. abbr,
  328. acronym {
  329.     border-bottom: 1px dotted #666;
  330.     cursor: help;
  331. }
  332. sup,
  333. sub {
  334.     height: 0;
  335.     line-height: 1;
  336.     position: relative;
  337.     vertical-align: baseline;
  338. }
  339. sup {
  340.     bottom: 1ex;
  341. }
  342. sub {
  343.     top: .5ex;
  344. }
  345. input[type="text"],
  346. textarea {
  347.     background: #333;
  348.     border: 1px solid #ccc;
  349.     box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  350.     -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  351.     -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  352.     padding: 2px;
  353. }
  354. a:link {
  355.     color: #3fa0dc;
  356.     text-decoration: none;
  357. }
  358. a:visited {
  359. }
  360. a:active,
  361. a:hover {
  362.     text-decoration: underline;
  363.     color: #fff;
  364. }
  365.  
  366. /* Text meant only for screen readers */
  367. .screen-reader-text {
  368.     position: absolute;
  369.     left: -9000px;
  370. }
  371.  
  372.  
  373. /* =Header
  374. -------------------------------------------------------------- */
  375.  
  376. #header {
  377.     padding: 0;
  378. }
  379. #site-title {
  380.     font-size: 50px;
  381.     line-height: 36px;
  382.     width: 900px;
  383.     margin: 0;
  384.     text-align: center;
  385.  
  386. }
  387. #site-title a {
  388.     font: 40pt "Trebuchet MS", "Lucida Grande", Lucida, Vernada, sans-serif;
  389.     color: #fff;
  390.     text-decoration: none;
  391. }
  392. #site-description {
  393.     font: normal 14px Verdana, Helvetica, Sans-serif;
  394.    
  395.     text-align: center;
  396.     margin-bottom: 20px;
  397.     color: white;
  398. }
  399.  
  400.  
  401. /* This is the custom header image */
  402. #branding img {
  403.     border-top: 0px solid #000;
  404.     border-bottom: 1px solid #000;
  405.     clear: both;
  406.     display: block;
  407. }
  408.  
  409.  
  410. /* =Menu
  411. -------------------------------------------------------------- */
  412.  
  413. #access {
  414.     background: #000;
  415.     display: block;
  416.     float: left;
  417.     margin: 0 auto 20px;
  418.     width: 948px;
  419.     border-bottom: 1px solid white;
  420.    
  421. }
  422. #access .menu-header,
  423. div.menu {
  424.     font-size: 14px;
  425.     margin-left: 12px;
  426.     width: 928px;
  427. }
  428. #access .menu-header ul,
  429. div.menu ul {
  430.     list-style: none;
  431.     margin: 0;
  432. }
  433. #access .menu-header li,
  434. div.menu li {
  435.     float: left;
  436.     position: relative;
  437. }
  438. #access a {
  439.     color: #aaa;
  440.     display: block;
  441.     line-height: 38px;
  442.     text-decoration: none;
  443.     padding: 0 21px 0 16px;
  444.  
  445. }
  446. #access ul ul {
  447.     box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  448.     -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  449.     -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  450.     display: none;
  451.     position: absolute;
  452.     top: 38px;
  453.     left: 0;
  454.     float: left;
  455.     width: 180px;
  456.     z-index: 99999;
  457. }
  458. #access ul ul li {
  459.     min-width: 180px;
  460. }
  461. #access ul ul ul {
  462.     left: 100%;
  463.     top: 0;
  464. }
  465. #access ul ul a {
  466.     background: #333;
  467.     line-height: 1em;
  468.     padding: 10px;
  469.     width: 160px;
  470.     height: auto;
  471. }
  472. #access li:hover > a,
  473. #access ul ul :hover > a {
  474.     background: #333;
  475.     color: #fff;
  476. }
  477. #access ul li:hover > ul {
  478.     display: block;
  479. }
  480. #access ul li.current_page_item > a,
  481. #access ul li.current-menu-ancestor > a,
  482. #access ul li.current-menu-item > a,
  483. #access ul li.current-menu-parent > a {
  484.     color: #fff;
  485. }
  486. * html #access ul li.current_page_item a,
  487. * html #access ul li.current-menu-ancestor a,
  488. * html #access ul li.current-menu-item a,
  489. * html #access ul li.current-menu-parent a,
  490. * html #access ul li a:hover {
  491.     color: #fff;
  492. }
  493.  
  494.  
  495. /* =Content
  496. -------------------------------------------------------------- */
  497.  
  498. #main {
  499.     clear: both;
  500.     overflow: hidden;
  501.     padding: 10px 0 0 0;
  502. }
  503. #content {
  504.     margin-bottom: 36px;
  505. }
  506. #content,
  507. #content input,
  508. #content textarea {
  509.     color: #fff;
  510.     font-size: 13px;
  511.     line-height: 20px;
  512. }
  513. #content p,
  514. #content ul,
  515. #content ol,
  516. #content dd,
  517. #content pre,
  518. #content hr {
  519.     margin-bottom: 12px;
  520.     font-family: Verdana,Helvetica,Sans-serif;
  521. }
  522. #content ul ul,
  523. #content ol ol,
  524. #content ul ol,
  525. #content ol ul {
  526.     margin-bottom: 0;
  527. }
  528. #content pre,
  529. #content kbd,
  530. #content tt,
  531. #content var {
  532.     font-size: 15px;
  533.     line-height: 21px;
  534. }
  535. #content code {
  536.     font-size: 13px;
  537. }
  538. #content dt,
  539. #content th {
  540.     color: #000;
  541. }
  542. #content h1,
  543. #content h2,
  544. #content h3,
  545. #content h4,
  546. #content h5,
  547. #content h6 {
  548.     color: #fff;
  549.     line-height: 1.5em;
  550.     margin: 0 0 20px 0;
  551. }
  552. #content table {
  553.     border: 1px solid #e7e7e7;
  554.     margin: 0 -1px 24px 0;
  555.     text-align: left;
  556.     width: 100%;
  557. }
  558. #content tr th,
  559. #content thead th {
  560.     color: #888;
  561.     font-size: 12px;
  562.     font-weight: bold;
  563.     line-height: 18px;
  564.     padding: 9px 24px;
  565. }
  566. #content tr td {
  567.     border-top: 1px solid #e7e7e7;
  568.     padding: 6px 24px;
  569. }
  570. #content tr.odd td {
  571.     background: #000;
  572. }
  573. .hentry {
  574.     margin: 0 0 48px 0;
  575. }
  576. .home .sticky {
  577.     background: #000;
  578.     margin-left: -20px;
  579.     margin-right: -20px;
  580.     padding: 0px 20px;
  581. }
  582. .single .hentry {
  583.     margin: 0 0 36px 0;
  584. }
  585. .page-title {
  586.     color: #fff;
  587.     font-size: 14px;
  588.     font-weight: bold;
  589.     margin: 0 0 36px 0;
  590. }
  591. .page-title span {
  592.     color: #333;
  593.     font-size: 16px;
  594.     font-style: italic;
  595.     font-weight: normal;
  596. }
  597. .page-title a:link,
  598. .page-title a:visited {
  599.     color: #888;
  600.     text-decoration: none;
  601. }
  602. .page-title a:active,
  603. .page-title a:hover {
  604.     color: #fff;
  605.     text-decoration: underline;
  606. }
  607. #content .entry-title {
  608.     color: #fff;
  609.     font-size: 28px;
  610.     font-weight: bold;
  611.     line-height: 1.3em;
  612.     margin-bottom: 0;
  613.     padding-bottom: 3px;
  614. }
  615. .entry-title a:link,
  616. .entry-title a:visited {
  617.     color: white;
  618. font-weight:bold;
  619. text-decoration:none;
  620. }
  621. .entry-title a:active,
  622. .entry-title a:hover {
  623.     color: white;
  624.     text-decoration: underline;
  625. }
  626. .entry-meta {
  627.     color: #888;
  628.     font-size: 12px;
  629. }
  630. .entry-meta abbr,
  631. .entry-utility abbr {
  632.     border: none;
  633. }
  634. .entry-meta abbr:hover,
  635. .entry-utility abbr:hover {
  636.     border-bottom: 1px dotted #666;
  637. }
  638. .entry-content,
  639. .entry-summary {
  640.     /*clear: both;*/
  641.     padding: 24px 0 0;
  642. }
  643. #content .entry-summary p:last-child {
  644.     margin-bottom: 12px;
  645. }
  646. .entry-content fieldset {
  647.     border: 1px solid #e7e7e7;
  648.     margin: 0 0 24px 0;
  649.     padding: 24px;
  650. }
  651. .entry-content fieldset legend {
  652.     background: #fff;
  653.     color: #000;
  654.     font-weight: bold;
  655.     padding: 0 24px;
  656. }
  657. .entry-content input {
  658.     margin: 0 0 24px 0;
  659. }
  660. .entry-content input.file,
  661. .entry-content input.button {
  662.     margin-right: 24px;
  663. }
  664. .entry-content label {
  665.     color: #888;
  666.     font-size: 12px;
  667. }
  668. .entry-content select {
  669.     margin: 0 0 24px 0;
  670. }
  671. .entry-content sup,
  672. .entry-content sub {
  673.     font-size: 10px;
  674. }
  675. .entry-content blockquote.left {
  676.     float: left;
  677.     margin-left: 0;
  678.     margin-right: 24px;
  679.     text-align: right;
  680.     width: 33%;
  681. }
  682. .entry-content blockquote.right {
  683.     float: right;
  684.     margin-left: 24px;
  685.     margin-right: 0;
  686.     text-align: left;
  687.     width: 33%;
  688. }
  689. .page-link {
  690.     color: #eee;
  691.     font-weight: bold;
  692.     margin: 0 0 22px 0;
  693.     word-spacing: 0.5em;
  694. }
  695. .page-link a:link,
  696. .page-link a:visited {
  697.     background: #f1f1f1;
  698.     color: #333;
  699.     font-weight: normal;
  700.     padding: 0.5em 0.75em;
  701.     text-decoration: none;
  702. }
  703. .home .sticky .page-link a {
  704.     background: #d9e8f7;
  705. }
  706. .page-link a:active,
  707. .page-link a:hover {
  708.     color: #fff;
  709.     text-decoration: underline;
  710. }
  711. body.page .edit-link {
  712.     clear: both;
  713.     display: block;
  714. }
  715. #entry-author-info {
  716.     background: #f2f7fc;
  717.     border-top: 4px solid #000;
  718.     clear: both;
  719.     font-size: 14px;
  720.     line-height: 20px;
  721.     margin: 24px 0;
  722.     overflow: hidden;
  723.     padding: 18px 20px;
  724. }
  725. #entry-author-info #author-avatar {
  726.     background: #fff;
  727.     border: 1px solid #e7e7e7;
  728.     float: left;
  729.     height: 60px;
  730.     margin: 0 -104px 0 0;
  731.     padding: 11px;
  732. }
  733. #entry-author-info #author-description {
  734.     float: left;
  735.     margin: 0 0 0 104px;
  736. }
  737. #entry-author-info h2 {
  738.     color: #000;
  739.     font-size: 100%;
  740.     font-weight: bold;
  741.     margin-bottom: 0;
  742. }
  743. .entry-utility {
  744.     color: #888;
  745.     font-size: 12px;
  746.     line-height: 18px;
  747. }
  748. .entry-meta a,
  749. .entry-utility a {
  750.     color: #888;
  751. }
  752. .entry-meta a:hover,
  753. .entry-utility a:hover {
  754.     color: #fff;
  755.     text-decoration: underline;
  756. }
  757. #content .video-player {
  758.     padding: 0;
  759. }
  760.  
  761.  
  762. /* =Asides
  763. -------------------------------------------------------------- */
  764.  
  765. .home #content .category-asides p {
  766.     font-size: 14px;
  767.     line-height: 20px;
  768.     margin-bottom: 10px;
  769.     margin-top: 0;
  770. }
  771. .home .hentry.category-asides {
  772.     padding: 0;
  773. }
  774. .home #content .category-asides .entry-content {
  775.     padding-top: 0;
  776. }
  777.  
  778.  
  779. /* =Gallery listing
  780. -------------------------------------------------------------- */
  781.  
  782. .category-gallery .size-thumbnail img {
  783.     border: 10px solid #333;
  784.     margin-bottom: 0;
  785. }
  786. .category-gallery .gallery-thumb {
  787.     float: left;
  788.     margin-right: 20px;
  789.     margin-top: -4px;
  790. }
  791. .home #content .category-gallery .entry-utility {
  792.     padding-top: 4px;
  793. }
  794.  
  795.  
  796. /* =Attachment pages
  797. -------------------------------------------------------------- */
  798.  
  799. .attachment .entry-content .entry-caption {
  800.     font-size: 140%;
  801.     margin-top: 24px;
  802. }
  803. .attachment .entry-content .nav-previous a:before {
  804.     content: '\2190\00a0';
  805. }
  806. .attachment .entry-content .nav-next a:after {
  807.     content: '\00a0\2192';
  808. }
  809.  
  810.  
  811. /* =Images
  812. -------------------------------------------------------------- */
  813.  
  814. #content img {
  815.     height: auto;
  816.     max-width: 500px;
  817.     margin-top: 0;
  818.     margin-right: 0;
  819.     margin-bottom: 0;
  820. }
  821. #content .attachment img {
  822.     max-width: 900px;
  823. }
  824. #content .alignleft,
  825. #content img.alignleft {
  826.     display: inline;
  827.     float: left;
  828.     margin-right: 24px;
  829.     margin-top: 4px;
  830. }
  831. #content .alignright,
  832. #content img.alignright {
  833.     display: inline;
  834.     float: right;
  835.     margin-left: 24px;
  836.     margin-top: 4px;
  837. }
  838. #content .aligncenter,
  839. #content img.aligncenter {
  840.     display: block;
  841.     margin-left: auto;
  842.     margin-right: auto;
  843. }
  844. #content img.alignleft,
  845. #content img.alignright,
  846. #content img.aligncenter {
  847.     margin-bottom: 12px;
  848. }
  849. #content .wp-caption {
  850.     background: #f1f1f1;
  851.     line-height: 18px;
  852.     margin-bottom: 20px;
  853.     padding: 4px;
  854.     text-align: center;
  855. }
  856. #content .wp-caption img {
  857.     margin: 5px 5px 0;
  858. }
  859. #content .wp-caption p.wp-caption-text {
  860.     color: #222;
  861.     font-size: 12px;
  862.     margin: 5px;
  863. }
  864. #content .wp-smiley {
  865.     margin: 0;
  866. }
  867. #content .gallery {
  868.     margin: 0 auto 18px;
  869. }
  870. #content .gallery .gallery-item {
  871.     float: left;
  872.     margin-top: 0;
  873.     text-align: center;
  874.     width: 33%;
  875. }
  876. #content .gallery img {
  877.     border: 2px solid #cfcfcf;
  878. }
  879. #content .gallery .gallery-caption {
  880.     color: #888;
  881.     font-size: 12px;
  882.     margin: 0 0 12px;
  883. }
  884. #content .gallery dl {
  885.     margin: 0;
  886. }
  887. #content .gallery img {
  888.     border: 10px solid #f1f1f1;
  889. }
  890. #content .gallery br+br {
  891.     display: none;
  892. }
  893. #content .attachment img { /* single attachment images should be centered */
  894.     display: block;
  895.     margin: 0 auto;
  896. }
  897.  
  898.  
  899. /* =Navigation
  900. -------------------------------------------------------------- */
  901.  
  902. .navigation {
  903.     color: #888;
  904.     font-size: 12px;
  905.     line-height: 18px;
  906.     overflow: hidden;
  907. }
  908. .navigation a:link,
  909. .navigation a:visited {
  910.     color: #888;
  911.     text-decoration: none;
  912. }
  913. .navigation a:active,
  914. .navigation a:hover {
  915.     color: white;
  916.     text-decoration: underline;
  917. }
  918. .nav-previous {
  919.     float: left;
  920.     width: 50%;
  921. }
  922. .nav-next {
  923.     float: right;
  924.     text-align: right;
  925.     width: 50%;
  926. }
  927. #nav-above {
  928.     margin: 0 0 18px 0;
  929. }
  930. #nav-above {
  931.     display: none;
  932. }
  933. .paged #nav-above,
  934. .single #nav-above {
  935.     display: block;
  936. }
  937. #nav-below {
  938.     margin: -18px 0 0 0;
  939. }
  940.  
  941.  
  942. /* =Comments
  943. -------------------------------------------------------------- */
  944. #comments {
  945. }
  946. #comments .navigation {
  947.     padding: 0 0 18px 0;
  948. }
  949. h3#comments-title,
  950. h3#reply-title {
  951.     color: #fff;
  952.     font-size: 16px;
  953.     font-weight: bold;
  954.     margin-bottom: 0;
  955. }
  956. h3#comments-title {
  957.     padding: 24px 0;
  958. }
  959. .commentlist {
  960.     list-style: none;
  961.     margin: 0;
  962. }
  963. .commentlist li.comment {
  964.     border-bottom: 1px solid #666;
  965.     line-height: 24px;
  966.     margin: 0 0 24px 0;
  967.     padding: 0 0 0 56px;
  968.     position: relative;
  969. }
  970. .commentlist li:last-child {
  971.     border-bottom: none;
  972.     margin-bottom: 0;
  973. }
  974. #comments .comment-body ul,
  975. #comments .comment-body ol {
  976.     margin-bottom: 18px;
  977. }
  978. #comments .comment {
  979.     background: #333;
  980.     -moz-border-radius: 12px;
  981.     -webkit-border-radius: 12px;
  982.     padding: 20px 20px 0 70px;
  983. }
  984. #comments .comment-body p:last-child {
  985.     margin-bottom: 6px;
  986. }
  987. #comments .comment-body blockquote p:last-child {
  988.     margin-bottom: 24px;
  989. }
  990. .commentlist ol {
  991.     list-style: decimal;
  992. }
  993. .commentlist .avatar {
  994.     position: absolute;
  995.     top: 4px;
  996.     left: 0;
  997.     margin-left: 10px;
  998.     margin-top: 10px;
  999.     padding-top: 10px;
  1000. }
  1001. .comment-author {
  1002. }
  1003. .comment-author cite {
  1004.     color: #fff;
  1005.     font-style: normal;
  1006.     font-weight: bold;
  1007. }
  1008. .comment-author .says {
  1009.     font-style: italic;
  1010. }
  1011. .comment-meta {
  1012.     font-size: 12px;
  1013.     margin: 0 0 18px 0;
  1014. }
  1015. .comment-meta a:link,
  1016. .comment-meta a:visited {
  1017.     color: #888;
  1018.     text-decoration: none;
  1019. }
  1020. .comment-meta a:active,
  1021. .comment-meta a:hover {
  1022.     color: #ff4b33;
  1023. }
  1024. .commentlist .even {
  1025. }
  1026. .commentlist .bypostauthor {
  1027. }
  1028. .reply {
  1029.     font-size: 12px;
  1030.     padding: 0 0 24px 0;
  1031. }
  1032. .reply a,
  1033. a.comment-edit-link {
  1034.     color: #888;
  1035. }
  1036. .reply a:hover,
  1037. a.comment-edit-link:hover {
  1038.     color: #ff4b33;
  1039. }
  1040. .commentlist .children {
  1041.     list-style: none;
  1042.     margin: 0;
  1043. }
  1044. .commentlist .children li {
  1045.     border: none;
  1046.     margin: 0;
  1047. }
  1048. .nopassword,
  1049. .nocomments {
  1050.     display: none;
  1051. }
  1052. #comments .pingback {
  1053.     border-bottom: 1px solid #e7e7e7;
  1054.     margin-bottom: 18px;
  1055.     padding-bottom: 18px;
  1056. }
  1057. .commentlist li.comment+li.pingback {
  1058.     margin-top: -6px;
  1059. }
  1060. #comments .pingback p {
  1061.     color: #888;
  1062.     display: block;
  1063.     font-size: 12px;
  1064.     line-height: 18px;
  1065.     margin: 0;
  1066. }
  1067. #comments .pingback .url {
  1068.     font-size: 13px;
  1069.     font-style: italic;
  1070. }
  1071.  
  1072. /* Comments form */
  1073. input[type=submit] {
  1074.     color: #333;
  1075. }
  1076. #respond {
  1077.     border-top: 1px solid #e7e7e7;
  1078.     margin: 24px 0;
  1079.     overflow: hidden;
  1080.     position: relative;
  1081. }
  1082. #respond p {
  1083.     margin: 0;
  1084. }
  1085. #respond .comment-notes {
  1086.     margin-bottom: 1em;
  1087. }
  1088. .form-allowed-tags {
  1089.     line-height: 1em;
  1090. }
  1091. .children #respond {
  1092.     margin: 0 48px 0 0;
  1093. }
  1094. h3#reply-title {
  1095.     margin: 18px 0;
  1096. }
  1097. #comments-list #respond {
  1098.     margin: 0 0 18px 0;
  1099. }
  1100. #comments-list ul #respond {
  1101.     margin: 0;
  1102. }
  1103. #cancel-comment-reply-link {
  1104.     font-size: 12px;
  1105.     font-weight: normal;
  1106.     line-height: 18px;
  1107. }
  1108. #respond .required {
  1109.     color: #ff4b33;
  1110.     font-weight: bold;
  1111. }
  1112. #respond label {
  1113.     color: #888;
  1114.     font-size: 12px;
  1115. }
  1116. #respond input {
  1117.     margin: 0 0 9px;
  1118.     width: 98%;
  1119. }
  1120. #respond textarea {
  1121.     width: 98%;
  1122. }
  1123. #respond .form-allowed-tags {
  1124.     color: #888;
  1125.     font-size: 12px;
  1126.     line-height: 18px;
  1127. }
  1128. #respond .form-allowed-tags code {
  1129.     font-size: 11px;
  1130. }
  1131. #respond .form-submit {
  1132.     margin: 12px 0;
  1133. }
  1134. #respond .form-submit input {
  1135.     font-size: 14px;
  1136.     width: auto;
  1137.     color: #000;
  1138. }
  1139.  
  1140.  
  1141. /* =Widget Areas
  1142. -------------------------------------------------------------- */
  1143.  
  1144. .widget-area ul {
  1145.     list-style: none;
  1146.     margin-left: 0;
  1147. }
  1148. .widget-area ul ul {
  1149.     list-style: square;
  1150.     margin-left: 1.3em;
  1151. }
  1152. .widget_search #s {/* This keeps the search inputs in line */
  1153.     width: 60%;
  1154. }
  1155. .widget_search label {
  1156.     display: none;
  1157. }
  1158. .widget-container {
  1159.     margin: 0 0 18px 0;
  1160. }
  1161. .widget-title {
  1162.     color: #ddd;
  1163.     font-weight: bold;
  1164.     padding-bottom: 4px;
  1165. }
  1166. .widget-area a:link,
  1167. .widget-area a:visited {
  1168.     text-decoration: none;
  1169. }
  1170. .widget-area a:active,
  1171. .widget-area a:hover {
  1172.     text-decoration: underline;
  1173. }
  1174. .widget-area .entry-meta {
  1175.     font-size: 11px;
  1176. }
  1177. #wp_tag_cloud div {
  1178.     line-height: 1.6em;
  1179. }
  1180. #wp-calendar {
  1181.     width: 100%;
  1182. }
  1183. #wp-calendar caption {
  1184.     color: #ddd;
  1185.     font-size: 14px;
  1186.     font-weight: bold;
  1187.     padding-bottom: 4px;
  1188.     text-align: left;
  1189. }
  1190. #wp-calendar thead {
  1191.     font-size: 11px;
  1192. }
  1193. #wp-calendar thead th {
  1194. }
  1195. #wp-calendar tbody {
  1196.     color: #aaa;
  1197. }
  1198. #wp-calendar tbody td {
  1199.     background: #f5f5f5;
  1200.     border: 1px solid #fff;
  1201.     padding: 3px 0 2px;
  1202.     text-align: center;
  1203. }
  1204. #wp-calendar tbody .pad {
  1205.     background: none;
  1206. }
  1207. #wp-calendar tfoot #next {
  1208.     text-align: right;
  1209. }
  1210. .widget_rss a.rsswidget {
  1211.     color: #000;
  1212. }
  1213. .widget_rss a.rsswidget:hover {
  1214.     color: #ff4b33;
  1215. }
  1216. .widget_rss .widget-title img {
  1217.     width: 11px;
  1218.     height: 11px;
  1219. }
  1220.  
  1221. /* Main sidebars */
  1222. #main .widget-area ul {
  1223.     margin-left: 0;
  1224.     padding: 0 20px 0 0;
  1225.     list-style-type: none;
  1226. }
  1227. #main .widget-area ul ul {
  1228.     border: none;
  1229.     margin-left: 1.3em;
  1230.     padding: 0;
  1231. }
  1232.  
  1233. #main .widget-area ul ul a{
  1234.     font-weight: normal;
  1235.     font-style: normal;
  1236.         color: #999;
  1237.         text-decoration: none;
  1238.     font-size: 11px;
  1239. }
  1240.  
  1241. #main .widget-area a:hover {
  1242.         color: #CCC;
  1243.     }
  1244.  
  1245. #sidebar1 {
  1246. }
  1247. #sidebar2 {
  1248. }
  1249.  
  1250. /* Footer widget areas */
  1251. #footer-widget-area {
  1252. }
  1253.  
  1254.  
  1255. /* =Footer
  1256. -------------------------------------------------------------- */
  1257.  
  1258. #footer {
  1259.     margin-bottom: 20px;
  1260. }
  1261. #colophon {
  1262.     border-top: 4px solid #000;
  1263.     margin-top: -4px;
  1264.     overflow: hidden;
  1265.     padding: 18px 0;
  1266. }
  1267. #site-info {
  1268. }
  1269. #site-info a {
  1270.     color: #ddd;
  1271.     text-decoration: none;
  1272. }
  1273. #site-generator {
  1274.     font-style: italic;
  1275.     position: relative;
  1276. }
  1277. #site-generator a {
  1278.     color: #999;
  1279.     display: inline-block;
  1280.     line-height: 18px;
  1281.     text-decoration: none;
  1282. }
  1283. #site-generator p {
  1284.     margin-top: 0;
  1285.     margin-bottom: 0;
  1286.     font-size: 11px;
  1287. }
  1288.  
  1289.  
  1290. #site-generator a:hover {
  1291.     text-decoration: underline;
  1292. }
  1293. img#wpstats {
  1294.     display: block;
  1295.     margin: 0 auto 10px;
  1296. }
  1297.  
  1298.  
  1299. /* =Mobile Safari ( iPad, iPhone and iPod Touch )
  1300. -------------------------------------------------------------- */
  1301.  
  1302. pre {
  1303.     -webkit-text-size-adjust: 140%;
  1304. }
  1305. code {
  1306.     -webkit-text-size-adjust: 160%;
  1307. }
  1308. #access,
  1309. .entry-meta,
  1310. .entry-utility,
  1311. .navigation,
  1312. .widget-area {
  1313.     -webkit-text-size-adjust: 120%;
  1314. }
  1315. #site-description {
  1316.     -webkit-text-size-adjust: none;
  1317. }
  1318.  
  1319.  
  1320. /* =Print Style
  1321. -------------------------------------------------------------- */
  1322.  
  1323. @media print {
  1324.     body {
  1325.         background: none !important;
  1326.     }
  1327.     #wrapper {
  1328.         clear: both !important;
  1329.         display: block !important;
  1330.         float: none !important;
  1331.         position: relative !important;
  1332.     }
  1333.     #header {
  1334.         border-bottom: 2pt solid #000;
  1335.         padding-bottom: 18pt;
  1336.     }
  1337.     #colophon {
  1338.         border-top: 2pt solid #000;
  1339.     }
  1340.     #site-title,
  1341.     #site-description {
  1342.         line-height: 1.4em;
  1343.         margin: 0;
  1344.         padding: 0;
  1345.     }
  1346.     #site-title {
  1347.         font-size: 13pt;
  1348.     }
  1349.     .entry-content {
  1350.         font-size: 14pt;
  1351.         line-height: 1.6em;
  1352.     }
  1353.     .entry-title {
  1354.         font-size: 21pt;
  1355.     }
  1356.     #access,
  1357.     #branding img,
  1358.     #respond,
  1359.     .comment-edit-link,
  1360.     .edit-link,
  1361.     .navigation,
  1362.     .page-link,
  1363.     .widget-area {
  1364.         display: none !important;
  1365.     }
  1366.     #container,
  1367.     #header,
  1368.     #footer {
  1369.         margin: 0;
  1370.         width: 100%;
  1371.     }
  1372.     #content,
  1373.     .one-column #content {
  1374.         margin: 24pt 0 0;
  1375.         width: 100%;
  1376.     }
  1377.     .wp-caption p {
  1378.         font-size: 11pt;
  1379.     }
  1380.     #site-info,
  1381.     #site-generator {
  1382.         float: none;
  1383.         width: auto;
  1384.     }
  1385.     #colophon {
  1386.         width: auto;
  1387.     }
  1388.     img#wpstats {
  1389.         display: none;
  1390.     }
  1391.     #site-generator a {
  1392.         margin: 0;
  1393.         padding: 0;
  1394.     }
  1395.     #entry-author-info {
  1396.         border: 1px solid #e7e7e7;
  1397.     }
  1398.     #main {
  1399.         display: inline;
  1400.     }
  1401.     .home .sticky {
  1402.         border: none;
  1403.     }
  1404. }
  1405.  
  1406. .entry-content #facebook_like {
  1407.     height: 30px;
  1408. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement