Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2011
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.77 KB | None | 0 0
  1. html,body,form,fieldset {
  2. margin:0;
  3. padding:0;
  4. }
  5.  
  6. form label {
  7. cursor:pointer;
  8. }
  9.  
  10. body {
  11. min-width:760px;
  12. font-family:Verdana,Helvetica,Arial,sans-serif;
  13. font-size:76%;
  14. line-height:120%;
  15. color:#404040;
  16. background:#fff;
  17. text-align:left;
  18. }
  19.  
  20. #wrapper {
  21. width:760px;
  22. text-align:left;
  23. }
  24.  
  25. body.rtl #wrapper {
  26. text-align:right;
  27. direction:rtl;
  28. margin:0 0 0 auto;
  29. }
  30.  
  31. #header,#content {
  32. margin-bottom:2em;
  33. padding-left:20px;
  34. padding-right:20px;
  35. }
  36.  
  37. .clearfix:after {
  38. content:".";
  39. display:block;
  40. height:0;
  41. clear:both;
  42. visibility:hidden;
  43. }
  44.  
  45. .clearfix {
  46. display:block;
  47. }
  48.  
  49. * html .clearfix {
  50. height:1%;
  51. }
  52.  
  53. body .primary {
  54. width:500px;
  55. float:right;
  56. }
  57.  
  58. body.janus .primary {
  59. float:left;
  60. }
  61.  
  62. body .primary-span {
  63. padding-left:220px;
  64. clear:both;
  65. }
  66.  
  67. body.janus .primary-span {
  68. padding-left:0;
  69. padding-right:220px;
  70. }
  71.  
  72. body .secondary {
  73. width:200px;
  74. float:left;
  75. }
  76.  
  77. body .secondary-span {
  78. padding-left:520px;
  79. clear:both;
  80. }
  81.  
  82. body.janus .secondary-span {
  83. padding-left:0;
  84. padding-right:520px;
  85. }
  86.  
  87. body.centre {
  88. text-align:center;
  89. }
  90.  
  91. body #wrapper {
  92. margin:0 auto 0 0;
  93. }
  94.  
  95. body.centre #wrapper {
  96. margin:0 auto;
  97. }
  98.  
  99. #header-image {
  100. overflow:hidden;
  101. margin:0;
  102. }
  103.  
  104. #header-image a {
  105. text-decoration:none;
  106. border:none;
  107. }
  108.  
  109. #title {
  110. border-bottom:1px solid #ccc;
  111. margin:20px 0 -20px;
  112. }
  113.  
  114. #navigation {
  115. border-bottom:1px solid #ccc;
  116. margin:20px 0 0;
  117. }
  118.  
  119. #navigation ul.primary,#navigation .primary ul {
  120. list-style:none;
  121. margin:0;
  122. padding:.5em 0;
  123. }
  124.  
  125. body.rtl #navigation ul.primary,body.rtl #navigation .primary ul {
  126. direction:ltr;
  127. }
  128.  
  129. #navigation .primary li {
  130. display:inline;
  131. margin:0 1em 0 0;
  132. }
  133.  
  134. body.rtl #navigation .primary li {
  135. display:inline;
  136. margin:0 0 0 1em;
  137. }
  138.  
  139. #navigation div.secondary {
  140. padding:.5em 0;
  141. }
  142.  
  143. #wrapper .current-menu-item>a:link,#wrapper .current-menu-item>a:visited,#wrapper .current-menu-item>a:active,#wrapper .current_page_item>a:link,#wrapper .current_page_item>a:visited,#wrapper .current_page_item>a:active {
  144. color:#8fbf60;
  145. }
  146.  
  147. body .feed {
  148. display:block;
  149. float:left;
  150. min-height:15px;
  151. font-size:.8em;
  152. background:url(images/icons.png) no-repeat 0 1px;
  153. padding:1px 0 1px 20px;
  154. }
  155.  
  156. body.janus .feed,body.rtl .feed {
  157. float:right;
  158. background-position:100% 1px;
  159. padding:1px 20px 1px 0;
  160. }
  161.  
  162. blockquote {
  163. color:gray;
  164. margin:0 0 1em;
  165. padding:0 30px;
  166. }
  167.  
  168. strong {
  169. font-weight:700;
  170. }
  171.  
  172. em {
  173. font-style:italic;
  174. }
  175.  
  176. acronym,abbr {
  177. border-bottom:1px solid #8fb7bf;
  178. }
  179.  
  180. sup,sub {
  181. font-size:75%;
  182. }
  183.  
  184. sup {
  185. vertical-align:super;
  186. }
  187.  
  188. sub {
  189. vertical-align:sub;
  190. }
  191.  
  192. hr {
  193. width:100%;
  194. height:1px;
  195. background:#ccc;
  196. color:#ccc;
  197. border:none;
  198. margin:1em 0;
  199. padding:0;
  200. }
  201.  
  202. pre,code,tt {
  203. font-family:Courier,'Courier New',monospace;
  204. font-size:1em;
  205. line-height:1.8;
  206. color:#4d4d4d;
  207. }
  208.  
  209. pre {
  210. border:1px solid #e5e5e5;
  211. white-space:pre-wrap;
  212. overflow:hidden;
  213. background:#fafafa;
  214. margin:0 0 1em;
  215. padding:.5em 1em;
  216. }
  217.  
  218. code,tt {
  219. background:#efefef;
  220. }
  221.  
  222. pre code,pre tt {
  223. background:none;
  224. }
  225.  
  226. html>body code,html>body tt,html>body pre {
  227. font-size:12px;
  228. }
  229.  
  230. h3 code {
  231. text-transform:none;
  232. }
  233.  
  234. ul,ol {
  235. margin:0 0 1em 15px;
  236. padding:0;
  237. }
  238.  
  239. ul {
  240. list-style:disc;
  241. }
  242.  
  243. li {
  244. margin:0 0 .25em;
  245. }
  246.  
  247. body.rtl ul,body.rtl ol {
  248. margin:0 15px 1em 0;
  249. padding:0;
  250. }
  251.  
  252. body .content img {
  253. max-width:500px;
  254. height:auto;
  255. }
  256.  
  257. body .content a img {
  258. max-width:498px;
  259. }
  260.  
  261. #blog-title {
  262. font-family:'Times New Roman',Times,serif;
  263. font-size:1.5em;
  264. font-weight:400;
  265. border:none;
  266. line-height:120%;
  267. margin:0;
  268. padding:0;
  269. }
  270.  
  271. #tagline {
  272. font-family:'Times New Roman',Times,serif;
  273. font-size:1.5em;
  274. font-weight:400;
  275. font-style:italic;
  276. color:gray;
  277. border:none;
  278. line-height:120%;
  279. margin:.1em 0 .3em;
  280. padding:0;
  281. }
  282.  
  283. h1,body .entry .title {
  284. font-family:Georgia,serif;
  285. font-size:1.4em;
  286. font-weight:400;
  287. line-height:120%;
  288. border-bottom:1px solid #ccc;
  289. margin:0;
  290. padding:0 0 .1em;
  291. }
  292.  
  293. h2 {
  294. font-family:'Times New Roman',Times,serif;
  295. font-size:2em;
  296. font-weight:400;
  297. line-height:120%;
  298. margin:0 0 .5em;
  299. }
  300.  
  301. h3 {
  302. font-size:.8em;
  303. font-weight:400;
  304. color:#8fbf60;
  305. text-transform:uppercase;
  306. letter-spacing:.1em;
  307. border-bottom:1px solid #e5e5e5;
  308. margin:0 0 .8em;
  309. padding:0 0 .4em;
  310. }
  311.  
  312. h4 {
  313. font-family:'Times New Roman',Times,serif;
  314. font-size:1.5em;
  315. font-weight:400;
  316. line-height:120%;
  317. margin:0 0 .3em;
  318. }
  319.  
  320. h5 {
  321. font-size:1em;
  322. font-weight:700;
  323. line-height:120%;
  324. margin:0 0 .3em;
  325. padding:0;
  326. }
  327.  
  328. h6 {
  329. font-size:.8em;
  330. font-weight:700;
  331. line-height:120%;
  332. margin:0 0 .3em;
  333. padding:0;
  334. }
  335.  
  336. body .articlenav {
  337. border-bottom:1px solid #e5e5e5;
  338. padding-top:.75em;
  339. padding-bottom:.75em;
  340. background:#fcffff;
  341. color:gray;
  342. margin:0 0 2em;
  343. }
  344.  
  345. body.rtl .articlenav {
  346. border-bottom:1px solid #e5e5e5;
  347. }
  348.  
  349. body .entry {
  350. clear:both;
  351. margin:0 0 2em;
  352. }
  353.  
  354. body .entry .metadata {
  355. font-size:.8em;
  356. color:gray;
  357. margin:0;
  358. padding:0;
  359. }
  360.  
  361. body .entry .meta .metadata {
  362. margin:0;
  363. padding:.3em 0 0;
  364. }
  365.  
  366. body .aside .meta {
  367. border-top:1px dotted #d9d9d9;
  368. color:gray;
  369. font-size:.8em;
  370. text-align:right;
  371. clear:both;
  372. margin:-.8em 0 0;
  373. padding:.2em 0 0;
  374. }
  375.  
  376. body .pagination {
  377. font-family:'Times New Roman',Times,serif;
  378. font-size:1.5em;
  379. font-weight:400;
  380. line-height:120%;
  381. color:gray;
  382. clear:both;
  383. margin:0;
  384. }
  385.  
  386. body .insertright {
  387. width:220px;
  388. float:right;
  389. margin:0 0 20px 20px;
  390. }
  391.  
  392. body .insertleft {
  393. width:220px;
  394. float:left;
  395. margin:0 20px 20px 0;
  396. }
  397.  
  398. body .insert {
  399. background:#fcffff;
  400. border:1px solid #cfe2e5;
  401. margin:0 0 1em;
  402. padding:9px;
  403. }
  404.  
  405. body a.download {
  406. display:block;
  407. min-height:15px;
  408. margin:1em 0;
  409. padding:5px 5px 5px 28px;
  410. }
  411.  
  412. body .content a.download:link,body .content a.download:visited,body .content a.download:active {
  413. background:#fcffff url(images/icons.png) no-repeat 5px -295px;
  414. border:1px solid #cfe2e5;
  415. }
  416.  
  417. body .content a.download:hover {
  418. text-decoration:underline;
  419. }
  420.  
  421. a img {
  422. border:1px solid #006a80;
  423. }
  424.  
  425. a:hover img,body .comment a:hover .avatar {
  426. border:1px solid #a8001c;
  427. }
  428.  
  429. body .imageright,body .alignright {
  430. float:right;
  431. margin:0 0 10px 10px;
  432. }
  433.  
  434. body .imageblock {
  435. display:block;
  436. margin:0 0 1em;
  437. }
  438.  
  439. body .imagecentre,body .imagecenter,body .centered,body .aligncenter {
  440. display:block;
  441. text-align:center;
  442. margin:0 auto 1em;
  443. }
  444.  
  445. body .gallery {
  446. margin:0 auto 1em 0;
  447. }
  448.  
  449. body .gallery-item {
  450. float:left;
  451. margin-top:10px;
  452. text-align:center;
  453. }
  454.  
  455. body .gallery-caption {
  456. margin-left:0;
  457. }
  458.  
  459. body .wp-caption {
  460. max-width:490px;
  461. margin-bottom:10px;
  462. border:1px solid #e5e5e5;
  463. -moz-border-radius:3px;
  464. -khtml-border-radius:3px;
  465. -webkit-border-radius:3px;
  466. border-radius:3px;
  467. padding:4px 4px 2px;
  468. }
  469.  
  470. #wrapper .wp-caption a {
  471. display:block;
  472. border:none;
  473. margin:0;
  474. }
  475.  
  476. body .content .wp-caption img {
  477. max-width:490px;
  478. display:block;
  479. }
  480.  
  481. body .content .wp-caption a img {
  482. max-width:488px;
  483. }
  484.  
  485. body .wp-caption .wp-caption-text {
  486. font-size:.9em;
  487. text-align:center;
  488. margin:3px 0 2px;
  489. }
  490.  
  491. body .post-brief h3 {
  492. margin:0 0 .2em;
  493. }
  494.  
  495. body .post-brief p.post-metadata {
  496. color:gray;
  497. border:none;
  498. margin:0 0 .2em;
  499. padding:0;
  500. }
  501.  
  502. #comments {
  503. clear:both;
  504. margin:0;
  505. padding:0;
  506. }
  507.  
  508. body .comment,body .trackback,body .pingback {
  509. list-style:none;
  510. padding:0;
  511. }
  512.  
  513. li.comment,li.trackback,li.pingback {
  514. border-top:1px solid #ccc;
  515. margin:0;
  516. padding:0;
  517. }
  518.  
  519. body .comment ol.children,body .trackback ol.children,body .pingback ol.children {
  520. clear:both;
  521. border-top:1px solid #ccc;
  522. margin:0;
  523. padding:0 0 0 20px;
  524. }
  525.  
  526. body.rtl .comment ol.children,body.rtl .trackback ol.children,body.rtl .pingback ol.children {
  527. padding:0 20px 0 0;
  528. }
  529.  
  530. body p.pingdata {
  531. font-size:.8em;
  532. color:gray;
  533. margin:0;
  534. }
  535.  
  536. li.comment-lvl-first {
  537. border-top:none;
  538. }
  539.  
  540. body .comment .reply a {
  541. padding-left:13px;
  542. background:url(images/icons.png) no-repeat -7px -398px;
  543. }
  544.  
  545. body.rtl .comment .reply a {
  546. background:url(images/icons.png) no-repeat -7px -598px;
  547. }
  548.  
  549. body .comment-wrapper {
  550. padding:.66em 0;
  551. }
  552.  
  553. body .moderated {
  554. border-bottom:1px solid #e5e5e5;
  555. padding-bottom:.66em;
  556. background:url(images/icons.png) no-repeat 100% -200px;
  557. }
  558.  
  559. body .comment-meta {
  560. float:left;
  561. font-size:.8em;
  562. color:gray;
  563. margin:0;
  564. }
  565.  
  566. body .avatar-link {
  567. display:block;
  568. float:right;
  569. margin:0 0 10px 10px;
  570. }
  571.  
  572. body .avatar,body .comment a .avatar {
  573. display:block;
  574. float:right;
  575. border:1px solid #ccc;
  576. background:#fcfcfc;
  577. margin:0 0 10px 10px;
  578. padding:4px;
  579. }
  580.  
  581. body .comment .avatar-link .avatar {
  582. float:none;
  583. margin:0;
  584. }
  585.  
  586. body .comment-author {
  587. font-weight:700;
  588. color:#404040;
  589. }
  590.  
  591. body .comment-content {
  592. clear:left;
  593. padding-top:.8em;
  594. }
  595.  
  596. body.rtl .comment-content {
  597. clear:right;
  598. }
  599.  
  600. body .reply {
  601. font-size:.8em;
  602. margin:0;
  603. }
  604.  
  605. body .trackback {
  606. border-top:1px solid #ccc;
  607. background:#fcffff;
  608. margin:0;
  609. padding:.5em 0;
  610. }
  611.  
  612. body .trackback p {
  613. font-size:.8em;
  614. margin:0;
  615. }
  616.  
  617. #comments-header .title {
  618. width:49.5%;
  619. float:left;
  620. border:none;
  621. margin:0 0 .1em;
  622. }
  623.  
  624. #comments-header .comments-feed {
  625. width:49.5%;
  626. float:right;
  627. text-align:right;
  628. margin:0;
  629. padding:.75em 0 0;
  630. }
  631.  
  632. #comments-header .comments-feed a {
  633. display:block;
  634. float:right;
  635. min-height:16px;
  636. background:url(images/icons.png) no-repeat 100% -100px;
  637. font-size:.8em;
  638. padding:1px 20px 1px 0;
  639. }
  640.  
  641. .rtl #comments-header .comments-feed a {
  642. float:left;
  643. padding:1px 20px 1px 0;
  644. }
  645.  
  646. #comments-header .trackback-link {
  647. clear:both;
  648. border-top:1px solid #ccc;
  649. font-size:.8em;
  650. font-weight:700;
  651. color:gray;
  652. margin:.4em 0 0;
  653. padding:.5em 0;
  654. }
  655.  
  656. #comments-header .trackback-link a {
  657. font-weight:400;
  658. }
  659.  
  660. #comment-paging {
  661. border-top:1px solid #ccc;
  662. font-family:'Times New Roman',Times,serif;
  663. font-size:1.5em;
  664. color:gray;
  665. margin:0;
  666. padding:.5em 0;
  667. }
  668.  
  669. #comments-closed {
  670. border-top:1px solid #e5e5e5;
  671. padding-top:.66em;
  672. margin:0;
  673. }
  674.  
  675. body .navlist ul {
  676. list-style:none;
  677. margin:0 0 0 1em;
  678. }
  679.  
  680. body .archivelist ul {
  681. list-style:none;
  682. margin:0 0 0 1.5em;
  683. }
  684.  
  685. #footer {
  686. border-top:3px double #ccc;
  687. margin:0 20px;
  688. padding:1em 0 0;
  689. }
  690.  
  691. .recent-articles ul {
  692. list-style:none;
  693. margin:0;
  694. }
  695.  
  696. .recent-metadata {
  697. font-size:.8em;
  698. color:gray;
  699. margin:0 0 .5em;
  700. }
  701.  
  702. .recent-excerpt {
  703. line-height:1.4;
  704. margin:0 0 1em;
  705. }
  706.  
  707. #theme-info {
  708. border-top:3px double #ccc;
  709. color:gray;
  710. margin:.5em 0 0;
  711. padding:1em 0 .5em;
  712. }
  713.  
  714. .tarski input,.tarski select,.tarski textarea {
  715. font-family:Verdana,Helvetica,Arial,sans-serif;
  716. font-size:100%;
  717. }
  718.  
  719. .tarski input.text,.tarski input[type=text],.tarski input[type=password],.tarski textarea {
  720. border:1px solid #ccc;
  721. background:#fafafa;
  722. color:#404040;
  723. padding:2px;
  724. }
  725.  
  726. .tarski input[type=submit]:enabled,.tarski button:enabled {
  727. border:1px solid #ccc;
  728. border-radius:10px;
  729. -webkit-border-radius:10px;
  730. -moz-border-radius:10px;
  731. background:url(images/button_gradient.png) repeat-x 0 0;
  732. color:#404040;
  733. cursor:pointer;
  734. padding:2px 10px;
  735. }
  736.  
  737. .tarski input[type=submit]:enabled:focus,.tarski input[type=submit]:enabled:hover,.tarski button:enabled:focus,button:enabled:hover {
  738. border-color:#666;
  739. }
  740.  
  741. body .searchbox {
  742. width:200px;
  743. margin:0 0 1em;
  744. }
  745.  
  746. #s {
  747. display:block;
  748. width:194px;
  749. border:1px solid #ccc;
  750. background:#fafafa;
  751. color:#404040;
  752. margin:0 0 .6em;
  753. padding:2px;
  754. }
  755.  
  756. body.js #searchlabel {
  757. display:none;
  758. }
  759.  
  760. #respond {
  761. padding-top:.66em;
  762. border-top:1px solid #e5e5e5;
  763. }
  764.  
  765. #reply-title {
  766. border-bottom:1px solid #ccc;
  767. font-family:'Times New Roman',Times,serif;
  768. font-size:2em;
  769. font-weight:400;
  770. text-transform:none;
  771. letter-spacing:0;
  772. line-height:1;
  773. color:#404040;
  774. margin:0 0 .33em;
  775. padding:0 0 .33em;
  776. }
  777.  
  778. #cancel-comment-reply-link {
  779. display:block;
  780. float:right;
  781. font-family:Verdana,Helvetica,Arial,sans-serif;
  782. font-size:.5em;
  783. background:url(images/icons.png) no-repeat 100% -498px;
  784. margin:.75em 0 .5em;
  785. padding:0 13px .25em 0;
  786. }
  787.  
  788. body .response-details {
  789. margin-bottom:1em;
  790. }
  791.  
  792. body .response-details .text-wrap {
  793. width:31%;
  794. float:left;
  795. margin-right:2%;
  796. }
  797.  
  798. body .response-details>.text-wrap {
  799. width:32%;
  800. }
  801.  
  802. body .response-details .url-wrap {
  803. margin-right:0;
  804. }
  805.  
  806. body .response {
  807. margin-bottom:.8em;
  808. }
  809.  
  810. body .response-details .text-wrap label,body .response label {
  811. display:block;
  812. height:1.5em;
  813. color:gray;
  814. }
  815.  
  816. body .response-details .text-wrap input.text {
  817. display:block;
  818. width:98%;
  819. }
  820.  
  821. body .response textarea {
  822. display:block;
  823. width:99%;
  824. }
  825.  
  826. a {
  827. text-decoration:none;
  828. }
  829.  
  830. a:link,a:visited,a:active {
  831. color:#006a80;
  832. }
  833.  
  834. body .content a:hover,body .link-pages a:hover,body .tagdata a:hover,body .widget_tag_cloud a:hover {
  835. border-bottom:1px solid #e5cfd2;
  836. }
  837.  
  838. body .widget ul {
  839. list-style:none;
  840. margin:0;
  841. }
  842.  
  843. body .widget ul ul,body .widget ol ol,body .widget ol ul,body .widget ul ol {
  844. margin-left:15px;
  845. }
  846.  
  847. body.rtl .widget ul ul,body.rtl .widget ol ol,body.rtl .widget ol ul,body.rtl .widget ul ol {
  848. margin-right:15px;
  849. }
  850.  
  851. body .widget_tag_cloud {
  852. line-height:1.2;
  853. }
  854.  
  855. body .widget_calendar table {
  856. width:100%;
  857. }
  858.  
  859. body .widget_calendar caption {
  860. border-bottom:1px solid #ccc;
  861. font-family:'Times New Roman',Times,Georgia,serif;
  862. font-size:1.5em;
  863. text-align:center;
  864. margin:.25em 0 .2em;
  865. padding:0 0 .5em;
  866. }
  867.  
  868. body .widget_calendar th,body .widget_calendar td {
  869. text-align:center;
  870. margin:1px;
  871. padding:5px;
  872. }
  873.  
  874. body .widget_calendar th {
  875. background:#fafcfc;
  876. font-weight:700;
  877. }
  878.  
  879. body .widget_calendar td {
  880. background:#edf1f2;
  881. }
  882.  
  883. body .widget_calendar tbody td a {
  884. display:block;
  885. color:#fff;
  886. background:#8bb6cc;
  887. margin:-5px;
  888. padding:5px;
  889. }
  890.  
  891. body .widget_calendar tbody td a:hover {
  892. color:#fff;
  893. background:#cc8a95;
  894. }
  895.  
  896. body .widget_calendar tfoot td {
  897. font-family:'Times New Roman',Times,Georgia,serif;
  898. font-size:1.5em;
  899. }
  900.  
  901. body .widget_calendar #prev {
  902. text-align:left;
  903. }
  904.  
  905. {
  906. display:none;
  907. text-indent:-9999px;
  908. }
  909.  
  910. fieldset,#header-image a img,#wrapper .gallery a:link,#wrapper .gallery-item a:visited,#wrapper .gallery-item a:hover,#wrapper .gallery-item a:active,#wrapper a.imagelink2 img,#wrapper a.imagelink2:hover img,#wrapper a.imagelink:link,#wrapper a.imagelink:visited,#wrapper a.imagelink:hover,#wrapper a.imagelink:active,#wrapper a.imagelink2:link,#wrapper a.imagelink2:visited,#wrapper a.imagelink2:hover,#wrapper a.imagelink2:active,#wrapper .content h2 a:link,#wrapper .content h2 a:visited,#wrapper .content h2 a:hover,#wrapper .content h2 a:active,#wrapper .content h3 a:link,#wrapper .content h3 a:visited,#wrapper .content h3 a:hover,#wrapper .content h3 a:active,#wrapper .content h4 a:link,#wrapper .content h4 a:visited,#wrapper .content h4 a:hover,#wrapper .content h4 a:active {
  911. border:none;
  912. }
  913.  
  914. #footer,#theme-info,#footer-include,body .comment .reply {
  915. clear:both;
  916. }
  917.  
  918. body.janus .secondary,body.rtl .comment-meta,.rtl #comments-header .title {
  919. float:right;
  920. }
  921.  
  922. body.rtl,body.janus #navigation .secondary p,body.janus #theme-info .secondary p,body.janus .articlenav,body .widget_calendar #next {
  923. text-align:right;
  924. }
  925.  
  926. #navigation div.secondary p,body .post-brief p.excerpt,body .comment .comment,.recent-articles li,h4.recent-title,p.submit-wrapper {
  927. margin:0;
  928. }
  929.  
  930. #wrapper .current-menu-item>a:hover,#wrapper .current_page_item>a:hover,a:hover {
  931. color:#a8001c;
  932. }
  933.  
  934. p,body .entry .meta,body .archive .meta {
  935. margin:0 0 1em;
  936. }
  937.  
  938. small,body .req-notice {
  939. font-size:.8em;
  940. }
  941.  
  942. body .content p,body .content li {
  943. line-height:1.4;
  944. }
  945.  
  946. body .posts .entry,body .aside {
  947. margin:0 0 4em;
  948. }
  949.  
  950. body .archive,body .post-brief,body .widget {
  951. margin:0 0 2em;
  952. }
  953.  
  954. body .link-pages,body .tagdata {
  955. font-size:.8em;
  956. color:gray;
  957. clear:both;
  958. }
  959.  
  960. .sticky,.bypostauthor {
  961. background-color:inherit;
  962. }
  963.  
  964. body .insert h3,body .content a:link,body .content a:active,body .content a:visited,body .link-pages a:link,body .link-pages a:active,body .link-pages a:visited,body .tagdata a:link,body .tagdata a:active,body .tagdata a:visited,body .widget_tag_cloud a:link,body .widget_tag_cloud a:active,body .widget_tag_cloud a:visited {
  965. border-bottom:1px solid #cfe2e5;
  966. }
  967.  
  968. body .imageleft,body .alignleft,body.rtl .avatar-link,body.rtl .avatar,body.rtl .comment a .avatar {
  969. float:left;
  970. margin:0 10px 10px 0;
  971. }
  972.  
  973. body #wrapper .content .gallery-item a,body #wrapper .content .attachment a,#wrapper .navlist a:link,#wrapper .navlist a:visited,#wrapper .navlist a:hover,#wrapper .navlist a:active {
  974. border-bottom:none;
  975. }
  976.  
  977. body .tagcloud a,body .widget_tag_cloud a {
  978. margin:0 2px 0 0;
  979. }
  980.  
  981. #comment-paging span.page-numbers,.tarski input::-webkit-input-placeholder {
  982. color:#404040;
  983. }
  984.  
  985. body .navlist,body .bookmarks ul {
  986. list-style:none;
  987. margin:0 0 1em;
  988. }
  989.  
  990. body .navlist li,body .navlist ul li,body .archivelist li,body .archivelist ul li,body .postspermonth li,body .bookmarks ul li,body .widget ul li {
  991. margin:.5em 0;
  992. }
  993.  
  994. body .archivelist,body .postspermonth {
  995. list-style:none;
  996. margin:.5em 0 1em;
  997. }
  998.  
  999. .tarski input.text:focus,.tarski input[type=text]:focus,.tarski input[type=password]:focus,.tarski textarea:focus,#s:focus,body .widget_calendar td.pad,.widget_calendar tfoot td {
  1000. background:#fff;
  1001. }
  1002.  
  1003. #header h1,#site-title,#header p {
  1004. font-size:0;
  1005. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement