Advertisement
Guest User

CSS

a guest
May 18th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.92 KB | None | 0 0
  1. /*
  2.  
  3. Theme Name: Citrus IslandWP - Mod for Emily in Chile
  4.  
  5. Theme URI:
  6.  
  7. Description: Wordpress theme based on Citrus Island open source web template by StyleShout. Widgets compatible. Modified by Jennette Fulda at http://www.makemyblogpretty.com/
  8.  
  9. Version: 1.0
  10.  
  11. Author: StyleShout, ported by Navjot Singh
  12.  
  13. Author URI:
  14.  
  15. */
  16.  
  17.  
  18.  
  19.  
  20.  
  21. /********************************************
  22.  
  23. HTML ELEMENTS
  24.  
  25. ********************************************/
  26.  
  27.  
  28.  
  29. /* top elements */
  30.  
  31. * { margin:0; padding: 0; }
  32.  
  33.  
  34.  
  35. body {
  36.  
  37. margin: 0; padding: 0;
  38.  
  39. font: 70%/1.5em Verdana, Tahoma, Arial,sans-serif;
  40.  
  41. color: #333;
  42.  
  43. background: #FFF url(images/bg.gif) repeat-x;
  44.  
  45. text-align: center;
  46.  
  47. }
  48.  
  49.  
  50.  
  51. .post { font-size: 13px;line-height:1.4;}
  52. .post div {margin-bottom:10px;}
  53. .post p {padding:10px 0;}
  54.  
  55. .tr-caption-container {padding:5px 0 10px;font-size:11px;font-style:italic;}
  56. span br {display:none}
  57. .comment-body br {margin-bottom:10px;}
  58.  
  59. /* links */
  60.  
  61. a {
  62.  
  63. color: #F9864D;
  64.  
  65. background-color: inherit;
  66.  
  67. text-decoration: none;
  68.  
  69. }
  70.  
  71. a:hover {
  72.  
  73. color: #575757;
  74.  
  75. background-color: inherit;
  76.  
  77. }
  78.  
  79.  
  80.  
  81. /* headers */
  82.  
  83. h1, h2, h3 {
  84.  
  85. font-family: 'Trebuchet MS', Tahoma, Verdana, Sans-serif;
  86.  
  87. font-weight: Bold;
  88.  
  89. }
  90.  
  91. h1 {
  92.  
  93. font-size: 145%;
  94.  
  95. padding: 10px 10px 5px 0px;
  96.  
  97. color: #75A54B;
  98.  
  99. background-color: inherit;
  100.  
  101. border-bottom: 1px solid #EFF0F1;
  102.  
  103. }
  104.  
  105. h2 {
  106.  
  107. font-size: 125%;
  108.  
  109. text-transform: uppercase;
  110.  
  111. }
  112.  
  113. h3 {
  114.  
  115. font-size: 125%;
  116.  
  117. color: #404040;
  118.  
  119. }
  120.  
  121.  
  122.  
  123. h2, h3, p {
  124.  
  125. padding: 10px;
  126.  
  127. margin: 0;
  128.  
  129. }
  130.  
  131.  
  132.  
  133. /* images */
  134.  
  135. img {
  136.  
  137. border: 3px solid #D5D5D5;
  138.  
  139. }
  140.  
  141. img.float-right {
  142.  
  143. margin: 5px 0px 5px 10px;
  144.  
  145. }
  146.  
  147. img.float-left {
  148.  
  149. margin: 5px 10px 5px 0px;
  150.  
  151. }
  152.  
  153.  
  154.  
  155. #sidebar h1,
  156.  
  157. #sidebar p {
  158.  
  159. padding-left: 0;
  160.  
  161. }
  162.  
  163.  
  164.  
  165. ul, ol {
  166.  
  167. margin: 10px 20px;
  168.  
  169. padding: 0 20px;
  170.  
  171. }
  172.  
  173.  
  174.  
  175. code {
  176.  
  177. margin: 5px 0;
  178.  
  179. padding: 10px;
  180.  
  181. text-align: left;
  182.  
  183. display: block;
  184.  
  185. overflow: auto;
  186.  
  187. font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace;
  188.  
  189. /* white-space: pre; */
  190.  
  191. background: #FAFAFA;
  192.  
  193. border: 1px solid #f2f2f2;
  194.  
  195. border-left: 4px solid #FF9966;
  196.  
  197. }
  198.  
  199. acronym {
  200.  
  201. cursor: help;
  202.  
  203. border-bottom: 1px solid #777;
  204.  
  205. }
  206.  
  207. blockquote {
  208.  
  209. margin: 10px;
  210.  
  211. padding: 0 0 0 32px;
  212.  
  213. background: #FAFAFA url(images/quote.gif) no-repeat 5px 10px !important;
  214.  
  215. background-position: 8px 10px;
  216.  
  217. border: 1px solid #f2f2f2;
  218.  
  219. border-left: 4px solid #FF9966;
  220.  
  221. }
  222.  
  223.  
  224.  
  225. /* form elements */
  226.  
  227. form {
  228.  
  229. margin:10px; padding: 5px;
  230.  
  231. border: 1px solid #f2f2f2;
  232.  
  233. background-color: #FAFAFA;
  234.  
  235. }
  236.  
  237. label {
  238.  
  239. display:block;
  240.  
  241. font-weight:bold;
  242.  
  243. margin:5px 0;
  244.  
  245. }
  246.  
  247. input {
  248.  
  249. padding: 3px;
  250.  
  251. border:1px solid #eee;
  252.  
  253. font: normal 1em Verdana, sans-serif;
  254.  
  255. color:#777;
  256.  
  257. }
  258.  
  259. textarea {
  260.  
  261. width:350px;
  262.  
  263. padding:3px;
  264.  
  265. font: normal 1em Verdana, sans-serif;
  266.  
  267. border:1px solid #eee;
  268.  
  269. height:100px;
  270.  
  271. display:block;
  272.  
  273. color:#777;
  274.  
  275. }
  276.  
  277. input.button {
  278.  
  279. margin: 0;
  280.  
  281. font: bolder 12px Verdana, Sans-serif;
  282.  
  283. border: 1px solid #CCC;
  284.  
  285. padding: 2px 3px;
  286.  
  287. background: #FFF;
  288.  
  289. color: #75A54B;
  290.  
  291. }
  292.  
  293. /* search form */
  294.  
  295. form.search {
  296.  
  297. position: absolute;
  298.  
  299. top: 15px; right: 5px;
  300.  
  301. padding: 0; margin: 0;
  302.  
  303. border: none;
  304.  
  305. background-color: transparent;
  306.  
  307. }
  308.  
  309. form.search input.textbox {
  310.  
  311. margin: 0;
  312.  
  313. width: 120px;
  314.  
  315. border: 1px solid #CCC;
  316.  
  317. background: #FFF;
  318.  
  319. color: #333;
  320.  
  321. vertical-align: top;
  322.  
  323. }
  324.  
  325. form.search input.button {
  326.  
  327. width: 60px;
  328.  
  329. vertical-align: top;
  330.  
  331. }
  332.  
  333.  
  334.  
  335. /**************************************
  336.  
  337. LAYOUT
  338.  
  339. ***************************************/
  340.  
  341. #wrap {
  342.  
  343. margin: 0 auto;
  344.  
  345. padding: 0;
  346.  
  347. width: 850px;
  348.  
  349. text-align: left;
  350.  
  351. }
  352.  
  353.  
  354.  
  355. /* header */
  356.  
  357. #header {
  358.  
  359. position: relative;
  360.  
  361. height: 70px;
  362.  
  363. margin: 0; padding: 0;
  364.  
  365. color: #808080;
  366.  
  367. }
  368.  
  369. #header h1#logo {
  370.  
  371. position: absolute;
  372.  
  373. font: bold 3.9em "trebuchet ms", Arial, Tahoma, Sans-Serif;
  374.  
  375. margin: 0; padding:0;
  376.  
  377. color: #75A54B;
  378.  
  379. letter-spacing: -2px;
  380.  
  381. border: none;
  382.  
  383.  
  384.  
  385. /* change the values of top and Left to adjust the position of the logo*/
  386.  
  387. top: 0; left: 2px;
  388.  
  389. }
  390.  
  391. #header h1#logo span { color: #FF9966; }
  392.  
  393.  
  394.  
  395. #header h2#slogan {
  396.  
  397. position: absolute;
  398.  
  399. margin: 0; padding: 0;
  400.  
  401. font: bold 12px Arial, Tahoma, Sans-Serif;
  402.  
  403. text-transform: none;
  404.  
  405.  
  406.  
  407. /* change the values of top and Left to adjust the position of the slogan*/
  408.  
  409. top: 50px; left: 45px;
  410.  
  411. }
  412.  
  413.  
  414.  
  415. /* menu */
  416.  
  417. #menu {
  418.  
  419. clear: both;
  420.  
  421. background: #FF9966 url(images/menubg.gif) repeat-x;
  422.  
  423. height: 30px;
  424.  
  425. margin: 0;
  426.  
  427. font: bolder 1.2em/30px Tahoma, Verdana, Arial, Sans-Serif;
  428.  
  429. }
  430.  
  431. #menu ul{
  432.  
  433. margin: 0; padding: 0 0 0 8px;
  434.  
  435. }
  436.  
  437. #menu ul li {
  438.  
  439. float: left;
  440.  
  441. list-style: none;
  442.  
  443. border-right: 1px solid #FFA500;
  444.  
  445. }
  446.  
  447. #menu ul li a {
  448.  
  449. display: block;
  450.  
  451. text-decoration: none;
  452.  
  453. padding: 0 15px;
  454.  
  455. color: #FFF;
  456.  
  457. }
  458.  
  459. #menu ul li a:hover {
  460.  
  461. color: #333;
  462.  
  463. background: url(images/menu-hover-bg.gif) repeat-x;
  464.  
  465. }
  466.  
  467. #menu ul li#current a, #menu ul li.current-menu-item a {
  468.  
  469. color: #333;
  470.  
  471. background: url(images/menu-current-bg.gif) repeat-x;
  472.  
  473. }
  474.  
  475.  
  476.  
  477. /* sidebar */
  478.  
  479. #sidebar {
  480.  
  481. float: right;
  482.  
  483. width: 21%;
  484.  
  485. margin: 0 15px 0 0; padding: 0;
  486.  
  487. display: inline;
  488.  
  489. }
  490.  
  491. #sidebar ul {
  492.  
  493. list-style: none;
  494.  
  495. text-align: left;
  496.  
  497. margin: 0 0 7px 0; padding: 0;
  498.  
  499. text-decoration: none;
  500.  
  501. }
  502.  
  503. #sidebar ul li {
  504.  
  505. border-bottom: 1px solid #EFF0F1;
  506.  
  507. background: url(images/arrow.gif) no-repeat 3px 6px;
  508.  
  509. padding: 2px 5px 2px 20px;
  510.  
  511. }
  512.  
  513.  
  514.  
  515. #sidebar ul.children {
  516.  
  517. list-style: none;
  518.  
  519. text-align: left;
  520.  
  521. margin: 0; padding: 0;
  522.  
  523. text-decoration: none;
  524.  
  525. }
  526.  
  527. #sidebar ul.children li {
  528.  
  529. border-bottom: 0px;
  530.  
  531. background: url(images/arrow.gif) no-repeat 3px 6px;
  532.  
  533. padding: 2px 5px 2px 20px;
  534.  
  535. }
  536.  
  537. * html body #sidebar ul li { height: 1%; }
  538.  
  539.  
  540.  
  541. #sidebar ul li a {
  542.  
  543. font-weight: bolder;
  544.  
  545. background-image: none;
  546.  
  547. text-decoration: none;
  548.  
  549. }
  550.  
  551.  
  552.  
  553. #sidebar img {
  554.  
  555. border:0;
  556.  
  557. }
  558.  
  559.  
  560.  
  561. #rightbar {
  562.  
  563. float: right;
  564.  
  565. width: 21%;
  566.  
  567. padding: 0;
  568.  
  569. margin: 0 0 0 0;
  570.  
  571. }
  572.  
  573.  
  574.  
  575. #rightbar ul {
  576.  
  577. list-style: none;
  578.  
  579. text-align: left;
  580.  
  581. margin: 0 0 7px 0; padding: 0;
  582.  
  583. text-decoration: none;
  584.  
  585. }
  586.  
  587. #rightbar ul li {
  588.  
  589. border-bottom: 1px solid #EFF0F1;
  590.  
  591. background: url(images/arrow.gif) no-repeat 3px 6px;
  592.  
  593. padding: 2px 5px 2px 20px;
  594.  
  595. }
  596.  
  597.  
  598.  
  599. * html body #rightbar ul li { height: 1%; }
  600.  
  601.  
  602.  
  603. #rightbar ul li a {
  604.  
  605. font-weight: bolder;
  606.  
  607. background-image: none;
  608.  
  609. text-decoration: none;
  610.  
  611. }
  612.  
  613. #rightbar ul.children {
  614.  
  615. list-style: none;
  616.  
  617. text-align: left;
  618.  
  619. margin: 0; padding: 0;
  620.  
  621. text-decoration: none;
  622.  
  623. }
  624.  
  625. #rightbar ul.children li {
  626.  
  627. border-bottom: 0px;
  628.  
  629. background: url(images/arrow.gif) no-repeat 3px 6px;
  630.  
  631. padding: 2px 5px 2px 20px;
  632.  
  633. }
  634.  
  635. #rightbar img {
  636.  
  637. border:0;
  638.  
  639. }
  640.  
  641. /* main column */
  642.  
  643. #main {
  644.  
  645. float: left;
  646.  
  647. margin: 0;
  648.  
  649. padding: 0;
  650.  
  651. width: 54%;
  652.  
  653. }
  654.  
  655.  
  656.  
  657. #main h1 a{
  658.  
  659. color: #75A54B;
  660.  
  661. }
  662.  
  663. #main h1 a:hover {
  664.  
  665. color: #F9864D;
  666.  
  667. }
  668.  
  669. ol.commentlist {
  670. list-style:none;
  671. margin:0;
  672. padding:0;
  673. }
  674. ul.children {list-style-type:none;padding:0;}
  675.  
  676.  
  677. .post-footer, .comment-body {
  678.  
  679. background-color: #FAFAFA;
  680.  
  681. padding: 5px; margin: 15px 10px 10px 10px;
  682.  
  683. border: 1px solid #f2f2f2;
  684.  
  685. font-size: 95%;
  686.  
  687. }
  688.  
  689. .post-footer .date, .comment-body .date {
  690.  
  691. background: url(images/clock.gif) no-repeat left center;
  692.  
  693. padding-left: 20px; margin: 0 10px 0 5px;
  694.  
  695. }
  696.  
  697. .post-footer .comments, .comment-body .comments {
  698.  
  699. background: url(images/comment.gif) no-repeat left center;
  700.  
  701. padding-left: 20px; margin: 0 10px 0 5px;
  702.  
  703. }
  704.  
  705. .post-footer .readmore, .comment-body .readmore {
  706.  
  707. background: url(images/page.gif) no-repeat left center;
  708.  
  709. padding-left: 20px; margin: 0 10px 0 5px;
  710.  
  711. }
  712.  
  713.  
  714.  
  715. /* footer */
  716.  
  717. #footer {
  718.  
  719. clear: both;
  720.  
  721. color: #666666;
  722.  
  723. padding: 0;
  724.  
  725. background: #FFF url(images/footerbg.gif) repeat-x;
  726.  
  727. height: 60px
  728.  
  729. }
  730.  
  731. #footer a {
  732.  
  733. text-decoration: none;
  734.  
  735. font-weight: bold;
  736.  
  737. }
  738.  
  739. #footer-content {
  740.  
  741. margin: 0 auto;
  742.  
  743. width: 800px
  744.  
  745. }
  746.  
  747. /*
  748.  
  749. #footer-content #footer-left {
  750.  
  751. padding: 10px;
  752.  
  753. width: 60%;
  754.  
  755. float: left;
  756.  
  757. text-align: left;
  758.  
  759. }
  760.  
  761. #footer-content #footer-right {
  762.  
  763. padding: 10px;
  764.  
  765. width: 33%;
  766.  
  767. float: right;
  768.  
  769. text-align: right;
  770.  
  771. }
  772.  
  773. */
  774.  
  775. /* alignment classes */
  776.  
  777. .float-left { float: left; }
  778.  
  779. .float-right { float: right; }
  780.  
  781. .align-left { text-align: left; }
  782.  
  783. .align-right { text-align: right; }
  784.  
  785.  
  786.  
  787. /* additional classes */
  788.  
  789. .clear { clear: both; }
  790.  
  791. .green { color: #75A54B; }
  792.  
  793.  
  794.  
  795. .linkcat { list-style:none; }
  796.  
  797. .widget{ list-style:none; }
  798.  
  799. .post p.wp-caption-text {text-align:center;padding:3px;background-color:#eee;border:solid 1px #999;font-size:11px;}
  800. .aligncenter {text-align:center;margin:0 auto;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement