Advertisement
Guest User

Twenty Ten CCSS

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