style.css 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039
  1. /*
  2. Theme Name: dw
  3. Theme URI: http://davidawindham.com/
  4. Description:
  5. Author: windhamdavid
  6. Version: 1.0
  7. Tags:
  8. */
  9. /*Thanks:
  10. Normalize.css https://github.com/necolas/normalize.css
  11. HTML5 Boilerplate https://github.com/h5bp
  12. --------------------------------------------------- */
  13. @import url(css/normalize.css) screen;
  14. html, body, div, span, applet, object, iframe,
  15. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  16. a, abbr, acronym, address, big, cite, code,
  17. del, dfn, em, font, img, ins, kbd, q, s, samp,
  18. small, strike, strong, sub, sup, tt, var,
  19. b, u, i, center,
  20. dl, dt, dd, ol, ul, li,
  21. fieldset, form, label, legend,
  22. table, caption, tbody, tfoot, thead, tr, th, td {
  23. background: transparent;
  24. border: 0;
  25. margin: 0;
  26. padding: 0;
  27. vertical-align: baseline;
  28. }
  29. body {
  30. line-height: 1;
  31. }
  32. h1, h2, h3, h4, h5, h6 {
  33. clear: both;
  34. font-weight: normal;
  35. }
  36. ol, ul {
  37. list-style: none;
  38. }
  39. blockquote {
  40. quotes: none;
  41. }
  42. blockquote:before, blockquote:after {
  43. content: '';
  44. content: none;
  45. }
  46. del {
  47. text-decoration: line-through;
  48. }
  49. /* tables still need 'cellspacing="0"' in the markup */
  50. table {
  51. border-collapse: collapse;
  52. border-spacing: 0;
  53. }
  54. a img {
  55. border: none;
  56. }
  57. .clear {
  58. clear: both;
  59. }
  60. /* =Layout
  61. -------------------------------------------------------------- */
  62. /*
  63. LAYOUT: Two columns
  64. DESCRIPTION: Two-column fixed layout with one sidebar right of content
  65. */
  66. #container {
  67. float: left;
  68. margin: 0 -240px 0 0;
  69. width: 100%;
  70. }
  71. #content {
  72. margin: 0 280px 0 20px;
  73. }
  74. #primary,
  75. #secondary {
  76. float: right;
  77. overflow: hidden;
  78. width: 220px;
  79. }
  80. #secondary {
  81. clear: right;
  82. }
  83. #footer {
  84. clear: both;
  85. width: 100%;
  86. }
  87. /*
  88. LAYOUT: One column, no sidebar
  89. DESCRIPTION: One centered column with no sidebar
  90. */
  91. .one-column #content {
  92. margin: 0 auto;
  93. width: 900px;
  94. }
  95. .guestbook #content {
  96. margin: 0 auto;
  97. width: 500px;
  98. float: left;
  99. }
  100. #container.guestbook {
  101. margin-right: -440px;
  102. }
  103. .hidden {
  104. display: none;
  105. }
  106. .guestbook_sidebar {
  107. border-left: 1px solid #999;
  108. float: left;
  109. overflow: hidden;
  110. width: 420px;
  111. padding: 18px 0 20px 0;
  112. }
  113. .guestbook_sidebar h4 {
  114. font-size: 14px;
  115. color: #000;
  116. font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  117. margin: 0px 0 10px;
  118. }
  119. .guestbook_sidebar h3 {
  120. font-size: 16px;
  121. color: #000;
  122. font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  123. font-weight: bold;
  124. margin: 15px 0 0px;
  125. }
  126. .guestbook_sidebar h3 span {
  127. font-size: 12px;
  128. color: #777;
  129. }
  130. .guestbook_sidebar h4 span {
  131. font-size: 12px;
  132. color: #777;
  133. }
  134. /*
  135. LAYOUT: Full width, no sidebar
  136. DESCRIPTION: Full width content with no sidebar; used for attachment pages
  137. */
  138. .single-attachment #content {
  139. margin: 0 auto;
  140. width: 900px;
  141. }
  142. /* =Fonts
  143. -------------------------------------------------------------- */
  144. body,
  145. input,
  146. textarea,
  147. .page-title span,
  148. .pingback a.url {
  149. font-family: Georgia, "Bitstream Charter", serif;
  150. }
  151. h3#comments-title,
  152. h3#reply-title,
  153. #access .menu,
  154. #access div.menu ul,
  155. #cancel-comment-reply-link,
  156. .form-allowed-tags,
  157. #site-info,
  158. #site-title,
  159. #wp-calendar,
  160. .comment-meta,
  161. .comment-body tr th,
  162. .comment-body thead th,
  163. .entry-content label,
  164. .entry-content tr th,
  165. .entry-content thead th,
  166. .entry-meta,
  167. .entry-title,
  168. .entry-utility,
  169. #respond label,
  170. .navigation,
  171. .page-title,
  172. .pingback p,
  173. .reply,
  174. .widget-title,
  175. .wp-caption-text,
  176. input[type=submit] {
  177. font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  178. }
  179. pre {
  180. font-family: "Courier 10 Pitch", Courier, monospace;
  181. }
  182. code {
  183. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  184. }
  185. /* =Structure
  186. -------------------------------------------------------------- */
  187. /* The main theme structure */
  188. #access .menu-header,
  189. div.menu,
  190. #colophon,
  191. #branding,
  192. #main,
  193. #wrapper {
  194. margin: 0 auto;
  195. width: 940px;
  196. }
  197. #wrapper {
  198. background: #fff;
  199. margin-top: 20px;
  200. padding: 0 40px;
  201. }
  202. /* Structure the footer area */
  203. #footer-widget-area {
  204. overflow: hidden;
  205. }
  206. #footer-widget-area .widget-area {
  207. float: left;
  208. margin-right: 20px;
  209. width: 220px;
  210. }
  211. #footer-widget-area #fourth {
  212. margin-right: 0;
  213. }
  214. #site-info {
  215. float: left;
  216. font-size: 14px;
  217. font-weight: bold;
  218. width: 700px;
  219. }
  220. #site-generator {
  221. float: right;
  222. width: 220px;
  223. }
  224. /* =Global Elements
  225. -------------------------------------------------------------- */
  226. /* Main global 'theme' and typographic styles */
  227. body {
  228. background: #f1f1f1;
  229. }
  230. body,
  231. input,
  232. textarea {
  233. color: #666;
  234. font-size: 12px;
  235. line-height: 18px;
  236. }
  237. hr {
  238. background-color: #e7e7e7;
  239. border: 0;
  240. clear: both;
  241. height: 1px;
  242. margin-bottom: 18px;
  243. }
  244. /* Text elements */
  245. p {
  246. margin-bottom: 18px;
  247. text-indent : 35px;
  248. }
  249. p.noindent {
  250. margin-bottom: 10px;
  251. text-indent : 0px;
  252. }
  253. ul {
  254. list-style: square;
  255. margin: 0 0 18px 1.5em;
  256. }
  257. ol {
  258. list-style: decimal;
  259. margin: 0 0 18px 1.5em;
  260. }
  261. ol ol {
  262. list-style: upper-alpha;
  263. }
  264. ol ol ol {
  265. list-style: lower-roman;
  266. }
  267. ol ol ol ol {
  268. list-style: lower-alpha;
  269. }
  270. ul ul,
  271. ol ol,
  272. ul ol,
  273. ol ul {
  274. margin-bottom: 0;
  275. }
  276. dl {
  277. margin: 0 0 24px 0;
  278. }
  279. dt {
  280. font-weight: bold;
  281. }
  282. dd {
  283. margin-bottom: 18px;
  284. }
  285. strong {
  286. font-weight: bold;
  287. }
  288. cite,
  289. em,
  290. i {
  291. font-style: italic;
  292. }
  293. big {
  294. font-size: 131.25%;
  295. }
  296. ins {
  297. background: #ffc;
  298. text-decoration: none;
  299. }
  300. blockquote {
  301. font-style: italic;
  302. padding: 0 3em;
  303. }
  304. blockquote cite,
  305. blockquote em,
  306. blockquote i {
  307. font-style: normal;
  308. }
  309. pre {
  310. background: #f7f7f7;
  311. color: #222;
  312. line-height: 18px;
  313. margin-bottom: 18px;
  314. padding: 1.5em;
  315. }
  316. abbr,
  317. acronym {
  318. border-bottom: 1px dotted #666;
  319. cursor: help;
  320. }
  321. sup,
  322. sub {
  323. height: 0;
  324. line-height: 1;
  325. position: relative;
  326. vertical-align: baseline;
  327. }
  328. sup {
  329. bottom: 1ex;
  330. }
  331. sub {
  332. top: .5ex;
  333. }
  334. input[type="text"],
  335. textarea {
  336. background: #f9f9f9;
  337. border: 1px solid #ccc;
  338. box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  339. -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  340. -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
  341. padding: 2px;
  342. }
  343. a:link {
  344. color: #251a86;
  345. text-decoration: none;
  346. }
  347. a:visited {
  348. color: #251a86;
  349. text-decoration: none;
  350. }
  351. a:active,
  352. a:hover {
  353. color: #757576;
  354. text-decoration: none;
  355. }
  356. /* Text meant only for screen readers */
  357. .screen-reader-text {
  358. position: absolute;
  359. left: -9000px;
  360. }
  361. /* =Header
  362. -------------------------------------------------------------- */
  363. #header {
  364. padding: 30px 0 0 0;
  365. }
  366. #site-title {
  367. float: right;
  368. margin: 0 0 5px 0;
  369. font: 21px/27px "Courier New", Courier, mono;
  370. }
  371. #site-title a {
  372. color: #000;
  373. text-decoration: none;
  374. }
  375. #site-description {
  376. clear: right;
  377. float: right;
  378. font-style: italic;
  379. margin: 14px 0 18px 0;
  380. width: 160px;
  381. }
  382. /* This is the custom header image */
  383. #branding img {
  384. border-top: 4px solid #000;
  385. border-bottom: 1px solid #000;
  386. clear: both;
  387. display: block;
  388. }
  389. /* =Menu
  390. -------------------------------------------------------------- */
  391. #access {
  392. background: #fff;
  393. display: block;
  394. float: left;
  395. margin: 0 auto;
  396. width: 940px;
  397. border-top: 1px solid #999;
  398. }
  399. .subnav {
  400. float: left;
  401. margin: 0px 10px 0 400px;
  402. font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  403. }
  404. .subnav ul {
  405. list-style: none;
  406. float: right;
  407. width: 220px;
  408. }
  409. .subnav ul a {
  410. float: left;
  411. margin: 0 5px;
  412. }
  413. #access .menu-header,
  414. div.menu {
  415. font-size: 13px;
  416. margin-left: 12px;
  417. width: 928px;
  418. }
  419. #access .menu-header ul,
  420. div.menu ul {
  421. list-style: none;
  422. margin: 0;
  423. }
  424. #access .menu-header li,
  425. div.menu li {
  426. float: right;
  427. position: relative;
  428. }
  429. #access a {
  430. color: #aaa;
  431. display: block;
  432. line-height: 38px;
  433. padding: 0 10px;
  434. text-decoration: none;
  435. }
  436. #access ul ul {
  437. box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  438. -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  439. -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  440. display: none;
  441. position: absolute;
  442. top: 38px;
  443. left: 0;
  444. float: left;
  445. width: 180px;
  446. z-index: 99999;
  447. }
  448. #access ul ul li {
  449. min-width: 180px;
  450. }
  451. #access ul ul ul {
  452. left: 100%;
  453. top: 0;
  454. }
  455. #access ul ul a {
  456. background: #333;
  457. line-height: 1em;
  458. padding: 10px;
  459. width: 160px;
  460. height: auto;
  461. }
  462. #access li:hover > a,
  463. #access ul ul :hover > a {
  464. background: #transparent;
  465. color: #555;
  466. }
  467. #access ul li:hover > ul {
  468. display: block;
  469. }
  470. #access ul li.current_page_item > a,
  471. #access ul li.current-menu-ancestor > a,
  472. #access ul li.current-menu-item > a,
  473. #access ul li.current-menu-parent > a {
  474. color: #000;
  475. }
  476. * html #access ul li.current_page_item a,
  477. * html #access ul li.current-menu-ancestor a,
  478. * html #access ul li.current-menu-item a,
  479. * html #access ul li.current-menu-parent a,
  480. * html #access ul li a:hover {
  481. color: #fff;
  482. }
  483. /* =Content
  484. -------------------------------------------------------------- */
  485. #main {
  486. clear: both;
  487. overflow: hidden;
  488. padding: 10px 0 0 0;
  489. }
  490. #content {
  491. margin-bottom: 36px;
  492. }
  493. #content,
  494. #content input,
  495. #content textarea {
  496. color: #333;
  497. font-size: 16px;
  498. line-height: 24px;
  499. }
  500. #content p,
  501. #content ul,
  502. #content ol,
  503. #content dd,
  504. #content pre,
  505. #content hr {
  506. margin-bottom: 24px;
  507. font-family: "Courier New", Courier, mono;
  508. }
  509. #content ul ul,
  510. #content ol ol,
  511. #content ul ol,
  512. #content ol ul {
  513. margin-bottom: 0;
  514. }
  515. #content pre,
  516. #content kbd,
  517. #content tt,
  518. #content var {
  519. font-size: 15px;
  520. line-height: 21px;
  521. }
  522. #content code {
  523. font-size: 13px;
  524. }
  525. #content dt,
  526. #content th {
  527. color: #000;
  528. }
  529. #content h1,
  530. #content h2,
  531. #content h3,
  532. #content h4,
  533. #content h5,
  534. #content h6 {
  535. color: #000;
  536. line-height: 1.5em;
  537. margin: 0 0 20px 0;
  538. }
  539. #content table {
  540. border: 1px solid #e7e7e7;
  541. margin: 0 -1px 24px 0;
  542. text-align: left;
  543. width: 100%;
  544. }
  545. #content tr th,
  546. #content thead th {
  547. color: #888;
  548. font-size: 12px;
  549. font-weight: bold;
  550. line-height: 18px;
  551. padding: 9px 24px;
  552. }
  553. #content tr td {
  554. border-top: 1px solid #e7e7e7;
  555. padding: 6px 24px;
  556. }
  557. #content tr.odd td {
  558. background: #f2f7fc;
  559. }
  560. .hentry {
  561. margin: 0 0 20px 0;
  562. }
  563. .reserved-gallery {
  564. float: left;
  565. padding: 5px;
  566. }
  567. .home .sticky {
  568. background: #f2f7fc;
  569. border-top: 4px solid #000;
  570. margin-left: -20px;
  571. margin-right: -20px;
  572. padding: 18px 20px;
  573. }
  574. .single .hentry {
  575. margin: 0 0 36px 0;
  576. }
  577. .page-title {
  578. color: #000;
  579. font-size: 14px;
  580. font-weight: bold;
  581. margin: 0 0 36px 0;
  582. }
  583. .page-title span {
  584. color: #333;
  585. font-size: 16px;
  586. font-style: italic;
  587. font-weight: normal;
  588. }
  589. .entry-caption-parent .page-title span {
  590. color: #777;
  591. font-size: 12px;
  592. font-style: italic;
  593. font-weight: normal;
  594. }
  595. .nav-previous span.meta-nav {
  596. color: #888;
  597. font-size: 12px;
  598. font-style: italic;
  599. font-weight: normal;
  600. }
  601. .nav-next span.meta-nav {
  602. color: #888;
  603. font-size: 12px;
  604. font-style: italic;
  605. font-weight: normal;
  606. }
  607. .page-title a:link,
  608. .page-title a:visited {
  609. color: #888;
  610. text-decoration: none;
  611. }
  612. .page-title a:active,
  613. .page-title a:hover {
  614. color: #373339;
  615. }
  616. #content .entry-title {
  617. color: #000;
  618. font-size: 18px;
  619. line-height: 1.3em;
  620. margin-bottom: 20px;
  621. }
  622. h2.entry-title {
  623. color: #999;
  624. }
  625. .entry-title a:link,
  626. .entry-title a:visited {
  627. color: #000;
  628. text-decoration: none;
  629. }
  630. .entry-title a:active,
  631. .entry-title a:hover {
  632. color: #a0aec4;
  633. }
  634. .entry-meta {
  635. color: #888;
  636. font-size: 12px;
  637. }
  638. .entry-meta-attachment {
  639. float: right;
  640. color: #888;
  641. font: 11px "Courier New", Courier, mono;
  642. }
  643. .entry-meta abbr,
  644. .entry-utility abbr {
  645. border: none;
  646. }
  647. .entry-meta abbr:hover,
  648. .entry-utility abbr:hover {
  649. border-bottom: 1px dotted #666;
  650. }
  651. .entry-content,
  652. .entry-summary {
  653. clear: both;
  654. padding: 18px 0 20px 0;
  655. }
  656. .entry-guestbook {
  657. clear: both;
  658. padding: 3px 0 10px 0;
  659. }
  660. .entry-content h5 {
  661. font: 14px "Courier New", Courier, mono;
  662. }
  663. .signature {
  664. font: 16px "Courier New", Courier, mono;
  665. float: right;
  666. margin: 10px 150px 40px 0px;
  667. }
  668. #inside h3 {
  669. font: 16px "Courier New", Courier, mono;
  670. line-height: 10px;
  671. margin: 0 0 10px 0;
  672. }
  673. #inside p {
  674. margin: 0 0 10px 0;
  675. line-height: 20px;
  676. }
  677. #content .entry-summary p:last-child {
  678. margin-bottom: 12px;
  679. }
  680. .entry-content fieldset {
  681. border: 1px solid #e7e7e7;
  682. margin: 0 0 24px 0;
  683. padding: 24px;
  684. }
  685. .entry-content fieldset legend {
  686. background: #fff;
  687. color: #000;
  688. font-weight: bold;
  689. padding: 0 24px;
  690. }
  691. .entry-content input {
  692. margin: 0 0 24px 0;
  693. }
  694. .entry-content input.file,
  695. .entry-content input.button {
  696. margin-right: 24px;
  697. }
  698. .entry-content label {
  699. color: #888;
  700. font-size: 12px;
  701. }
  702. .entry-content select {
  703. margin: 0 0 24px 0;
  704. }
  705. .entry-content sup,
  706. .entry-content sub {
  707. font-size: 10px;
  708. }
  709. .entry-content blockquote.left {
  710. float: left;
  711. margin-left: 0;
  712. margin-right: 24px;
  713. text-align: right;
  714. width: 33%;
  715. }
  716. .entry-content blockquote.right {
  717. float: right;
  718. margin-left: 24px;
  719. margin-right: 0;
  720. text-align: left;
  721. width: 33%;
  722. }
  723. .page-link {
  724. color: #000;
  725. font-weight: bold;
  726. margin: 0 0 22px 0;
  727. word-spacing: 0.5em;
  728. }
  729. .page-link a:link,
  730. .page-link a:visited {
  731. background: #f1f1f1;
  732. color: #333;
  733. font-weight: normal;
  734. padding: 0.5em 0.75em;
  735. text-decoration: none;
  736. }
  737. .home .sticky .page-link a {
  738. background: #d9e8f7;
  739. }
  740. .page-link a:active,
  741. .page-link a:hover {
  742. color: #ff4b33;
  743. }
  744. body.page .edit-link {
  745. clear: both;
  746. display: block;
  747. }
  748. #entry-author-info {
  749. background: #f2f7fc;
  750. border-top: 4px solid #000;
  751. clear: both;
  752. font-size: 14px;
  753. line-height: 20px;
  754. margin: 24px 0;
  755. overflow: hidden;
  756. padding: 18px 20px;
  757. }
  758. #entry-author-info #author-avatar {
  759. background: #fff;
  760. border: 1px solid #e7e7e7;
  761. float: left;
  762. height: 60px;
  763. margin: 0 -104px 0 0;
  764. padding: 11px;
  765. }
  766. #entry-author-info #author-description {
  767. float: left;
  768. margin: 0 0 0 104px;
  769. }
  770. #entry-author-info h2 {
  771. color: #000;
  772. font-size: 100%;
  773. font-weight: bold;
  774. margin-bottom: 0;
  775. }
  776. .entry-utility {
  777. clear: both;
  778. color: #888;
  779. font-size: 12px;
  780. line-height: 18px;
  781. }
  782. .entry-meta a,
  783. .entry-utility a {
  784. color: #888;
  785. }
  786. .entry-meta a:hover,
  787. .entry-utility a:hover {
  788. color: #ff4b33;
  789. }
  790. #content .video-player {
  791. padding: 0;
  792. }
  793. .date {
  794. float: right;
  795. margin: -20px 0 20px 50px;
  796. color: #000;
  797. font-family: "Courier New", Courier, mono;
  798. }
  799. /* =Asides
  800. -------------------------------------------------------------- */
  801. .home #content .category-asides p {
  802. font-size: 14px;
  803. line-height: 20px;
  804. margin-bottom: 10px;
  805. margin-top: 0;
  806. }
  807. .home .hentry.category-asides {
  808. padding: 0;
  809. }
  810. .home #content .category-asides .entry-content {
  811. padding-top: 0;
  812. }
  813. /* =Gallery listing
  814. -------------------------------------------------------------- */
  815. .category-gallery .size-thumbnail img {
  816. border: 10px solid #f1f1f1;
  817. margin-bottom: 0;
  818. }
  819. .category-gallery .gallery-thumb {
  820. float: left;
  821. margin-right: 20px;
  822. margin-top: -4px;
  823. }
  824. .home #content .category-gallery .entry-utility {
  825. padding-top: 4px;
  826. }
  827. /* =Attachment pages
  828. -------------------------------------------------------------- */
  829. .single-attachment .hentry {
  830. margin: 0px;
  831. }
  832. .attachment .entry-content .entry-caption {
  833. font-size: 140%;
  834. margin-top: 24px;
  835. }
  836. .entry-caption-attachment {
  837. margin: 0px auto 0;
  838. text-align: center;
  839. }
  840. #content .entry-caption-attachment h2.entry-title {
  841. margin: 0 0 5px;
  842. font-weight: normal;
  843. }
  844. #content .entry-caption-parent p.page-title {
  845. margin: -30px 0 0 0;
  846. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  847. }
  848. #content .entry-caption-parent p.page-title a {
  849. color: #555;
  850. }
  851. #content .entry-caption-attachment p {
  852. font-size: 14px;
  853. text-indent: 0px;
  854. line-height: 15px;
  855. margin-bottom: 0px;
  856. }
  857. .entry-caption-attachment h2 {
  858. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  859. }
  860. .attachment .entry-content .nav-previous a:before {
  861. content: '\2190\00a0';
  862. }
  863. .attachment .entry-content .nav-next a:after {
  864. content: '\00a0\2192';
  865. }
  866. /* =Images
  867. -------------------------------------------------------------- */
  868. #content img {
  869. max-width: 880px;
  870. }
  871. #content .home img {
  872. border: 15px solid #000;
  873. }
  874. #content .attachment img {
  875. max-width: 900px;
  876. }
  877. #content .alignleft,
  878. #content img.alignleft {
  879. display: inline;
  880. float: left;
  881. margin-right: 24px;
  882. margin-top: 4px;
  883. }
  884. #content .alignright,
  885. #content img.alignright {
  886. display: inline;
  887. float: right;
  888. margin-left: 24px;
  889. margin-top: 4px;
  890. }
  891. #content .aligncenter,
  892. #content img.aligncenter {
  893. clear: both;
  894. display: block;
  895. margin-left: auto;
  896. margin-right: auto;
  897. }
  898. #content img.alignleft,
  899. #content img.alignright,
  900. #content img.aligncenter {
  901. margin-bottom: 12px;
  902. }
  903. #content .wp-caption {
  904. background: #f1f1f1;
  905. line-height: 18px;
  906. margin-bottom: 20px;
  907. padding: 4px;
  908. text-align: center;
  909. }
  910. #content .wp-caption img {
  911. margin: 5px 5px 0;
  912. }
  913. #content .wp-caption p.wp-caption-text {
  914. color: #888;
  915. font-size: 12px;
  916. margin: 5px;
  917. }
  918. #content .wp-smiley {
  919. margin: 0;
  920. }
  921. #content .gallery {
  922. margin: 0 auto 18px;
  923. }
  924. #content .gallery .gallery-item {
  925. float: left;
  926. margin-top: 0;
  927. text-align: center;
  928. width: 33%;
  929. }
  930. #content .gallery img {
  931. border: 2px solid #cfcfcf;
  932. }
  933. #content .gallery .gallery-caption {
  934. color: #888;
  935. font-size: 12px;
  936. margin: 0 0 12px;
  937. }
  938. #content .gallery dl {
  939. margin: 0;
  940. }
  941. #content .gallery img {
  942. border: 10px solid #f1f1f1;
  943. }
  944. #content .gallery br+br {
  945. display: none;
  946. }
  947. #content .attachment img { /* single attachment images should be centered */
  948. display: block;
  949. margin: 0 auto;
  950. }
  951. /* =Navigation
  952. -------------------------------------------------------------- */
  953. .navigation {
  954. color: #888;
  955. font-size: 12px;
  956. line-height: 18px;
  957. overflow: hidden;
  958. }
  959. .navigation a:link,
  960. .navigation a:visited {
  961. color: #888;
  962. text-decoration: none;
  963. }
  964. .navigation a:active,
  965. .navigation a:hover {
  966. color: #ff4b33;
  967. }
  968. .nav-previous {
  969. float: left;
  970. width: 50%;
  971. margin: 0 0 15px 0;
  972. }
  973. .nav-next {
  974. float: right;
  975. text-align: right;
  976. width: 50%;
  977. }
  978. #nav-above {
  979. margin: 0 0 18px 0;
  980. }
  981. #nav-above {
  982. display: none;
  983. }
  984. .paged #nav-above,
  985. .single #nav-above {
  986. display: block;
  987. }
  988. #nav-below {
  989. margin: -18px 0 0 0;
  990. }