style.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  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: left;
  368. margin: 0 0 5px 0;
  369. width: 700px;
  370. font: 25px/27px "Courier New", Courier, mono;
  371. }
  372. #site-title a {
  373. color: #000;
  374. text-decoration: none;
  375. }
  376. #site-description {
  377. clear: right;
  378. float: right;
  379. font-style: italic;
  380. margin: 14px 0 18px 0;
  381. width: 160px;
  382. }
  383. /* This is the custom header image */
  384. #branding img {
  385. border-top: 4px solid #000;
  386. border-bottom: 1px solid #000;
  387. clear: both;
  388. display: block;
  389. }
  390. /* =Menu
  391. -------------------------------------------------------------- */
  392. #access {
  393. background: #fff;
  394. display: block;
  395. float: left;
  396. margin: 0 auto;
  397. width: 940px;
  398. border-top: 1px solid #999;
  399. }
  400. .subnav {
  401. float: left;
  402. margin: 0px 10px 0 400px;
  403. font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  404. }
  405. .subnav ul {
  406. list-style: none;
  407. float: right;
  408. width: 220px;
  409. }
  410. .subnav ul a {
  411. float: left;
  412. margin: 0 5px;
  413. }
  414. #access .menu-header,
  415. div.menu {
  416. font-size: 13px;
  417. margin-left: 12px;
  418. width: 928px;
  419. }
  420. #access .menu-header ul,
  421. div.menu ul {
  422. list-style: none;
  423. margin: 0;
  424. }
  425. #access .menu-header li,
  426. div.menu li {
  427. float: left;
  428. position: relative;
  429. }
  430. #access a {
  431. color: #aaa;
  432. display: block;
  433. line-height: 38px;
  434. padding: 0 10px;
  435. text-decoration: none;
  436. }
  437. #access ul ul {
  438. box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  439. -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  440. -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  441. display: none;
  442. position: absolute;
  443. top: 38px;
  444. left: 0;
  445. float: left;
  446. width: 180px;
  447. z-index: 99999;
  448. }
  449. #access ul ul li {
  450. min-width: 180px;
  451. }
  452. #access ul ul ul {
  453. left: 100%;
  454. top: 0;
  455. }
  456. #access ul ul a {
  457. background: #333;
  458. line-height: 1em;
  459. padding: 10px;
  460. width: 160px;
  461. height: auto;
  462. }
  463. #access li:hover > a,
  464. #access ul ul :hover > a {
  465. background: #transparent;
  466. color: #555;
  467. }
  468. #access ul li:hover > ul {
  469. display: block;
  470. }
  471. #access ul li.current_page_item > a,
  472. #access ul li.current-menu-ancestor > a,
  473. #access ul li.current-menu-item > a,
  474. #access ul li.current-menu-parent > a {
  475. color: #000;
  476. }
  477. * html #access ul li.current_page_item a,
  478. * html #access ul li.current-menu-ancestor a,
  479. * html #access ul li.current-menu-item a,
  480. * html #access ul li.current-menu-parent a,
  481. * html #access ul li a:hover {
  482. color: #fff;
  483. }
  484. /* =Content
  485. -------------------------------------------------------------- */
  486. #main {
  487. clear: both;
  488. overflow: hidden;
  489. padding: 10px 0 0 0;
  490. }
  491. #content {
  492. margin-bottom: 36px;
  493. }
  494. #content,
  495. #content input,
  496. #content textarea {
  497. color: #333;
  498. font-size: 16px;
  499. line-height: 24px;
  500. }
  501. #content p,
  502. #content ul,
  503. #content ol,
  504. #content dd,
  505. #content pre,
  506. #content hr {
  507. margin-bottom: 24px;
  508. font-family: "Courier New", Courier, mono;
  509. }
  510. #content ul ul,
  511. #content ol ol,
  512. #content ul ol,
  513. #content ol ul {
  514. margin-bottom: 0;
  515. }
  516. #content pre,
  517. #content kbd,
  518. #content tt,
  519. #content var {
  520. font-size: 15px;
  521. line-height: 21px;
  522. }
  523. #content code {
  524. font-size: 13px;
  525. }
  526. #content dt,
  527. #content th {
  528. color: #000;
  529. }
  530. #content h1,
  531. #content h2,
  532. #content h3,
  533. #content h4,
  534. #content h5,
  535. #content h6 {
  536. color: #000;
  537. line-height: 1.5em;
  538. margin: 0 0 20px 0;
  539. }
  540. #content table {
  541. border: 1px solid #e7e7e7;
  542. margin: 0 -1px 24px 0;
  543. text-align: left;
  544. width: 100%;
  545. }
  546. #content tr th,
  547. #content thead th {
  548. color: #888;
  549. font-size: 12px;
  550. font-weight: bold;
  551. line-height: 18px;
  552. padding: 9px 24px;
  553. }
  554. #content tr td {
  555. border-top: 1px solid #e7e7e7;
  556. padding: 6px 24px;
  557. }
  558. #content tr.odd td {
  559. background: #f2f7fc;
  560. }
  561. .hentry {
  562. margin: 0 0 20px 0;
  563. }
  564. .reserved-gallery {
  565. float: left;
  566. padding: 5px;
  567. }
  568. .home .sticky {
  569. background: #f2f7fc;
  570. border-top: 4px solid #000;
  571. margin-left: -20px;
  572. margin-right: -20px;
  573. padding: 18px 20px;
  574. }
  575. .single .hentry {
  576. margin: 0 0 36px 0;
  577. }
  578. .page-title {
  579. color: #000;
  580. font-size: 14px;
  581. font-weight: bold;
  582. margin: 0 0 36px 0;
  583. }
  584. .page-title span {
  585. color: #333;
  586. font-size: 16px;
  587. font-style: italic;
  588. font-weight: normal;
  589. }
  590. .entry-caption-parent .page-title span {
  591. color: #777;
  592. font-size: 12px;
  593. font-style: italic;
  594. font-weight: normal;
  595. }
  596. .nav-previous span.meta-nav {
  597. color: #888;
  598. font-size: 12px;
  599. font-style: italic;
  600. font-weight: normal;
  601. }
  602. .nav-next span.meta-nav {
  603. color: #888;
  604. font-size: 12px;
  605. font-style: italic;
  606. font-weight: normal;
  607. }
  608. .page-title a:link,
  609. .page-title a:visited {
  610. color: #888;
  611. text-decoration: none;
  612. }
  613. .page-title a:active,
  614. .page-title a:hover {
  615. color: #373339;
  616. }
  617. #content .entry-title {
  618. color: #000;
  619. font-size: 18px;
  620. line-height: 1.3em;
  621. margin-bottom: 20px;
  622. }
  623. h2.entry-title {
  624. color: #999;
  625. }
  626. .entry-title a:link,
  627. .entry-title a:visited {
  628. color: #000;
  629. text-decoration: none;
  630. }
  631. .entry-title a:active,
  632. .entry-title a:hover {
  633. color: #a0aec4;
  634. }
  635. .entry-meta {
  636. color: #888;
  637. font-size: 12px;
  638. }
  639. .entry-meta-attachment {
  640. float: right;
  641. color: #888;
  642. font: 11px "Courier New", Courier, mono;
  643. }
  644. .entry-meta abbr,
  645. .entry-utility abbr {
  646. border: none;
  647. }
  648. .entry-meta abbr:hover,
  649. .entry-utility abbr:hover {
  650. border-bottom: 1px dotted #666;
  651. }
  652. .entry-content,
  653. .entry-summary {
  654. clear: both;
  655. padding: 18px 0 20px 0;
  656. }
  657. .entry-guestbook {
  658. clear: both;
  659. padding: 3px 0 10px 0;
  660. }
  661. .entry-content h5 {
  662. font: 14px "Courier New", Courier, mono;
  663. }
  664. .signature {
  665. font: 16px "Courier New", Courier, mono;
  666. float: right;
  667. margin: 10px 150px 40px 0px;
  668. }
  669. #inside h3 {
  670. font: 16px "Courier New", Courier, mono;
  671. line-height: 10px;
  672. margin: 0 0 10px 0;
  673. }
  674. #inside p {
  675. margin: 0 0 10px 0;
  676. line-height: 20px;
  677. }
  678. #content .entry-summary p:last-child {
  679. margin-bottom: 12px;
  680. }
  681. .entry-content fieldset {
  682. border: 1px solid #e7e7e7;
  683. margin: 0 0 24px 0;
  684. padding: 24px;
  685. }
  686. .entry-content fieldset legend {
  687. background: #fff;
  688. color: #000;
  689. font-weight: bold;
  690. padding: 0 24px;
  691. }
  692. .entry-content input {
  693. margin: 0 0 24px 0;
  694. }
  695. .entry-content input.file,
  696. .entry-content input.button {
  697. margin-right: 24px;
  698. }
  699. .entry-content label {
  700. color: #888;
  701. font-size: 12px;
  702. }
  703. .entry-content select {
  704. margin: 0 0 24px 0;
  705. }
  706. .entry-content sup,
  707. .entry-content sub {
  708. font-size: 10px;
  709. }
  710. .entry-content blockquote.left {
  711. float: left;
  712. margin-left: 0;
  713. margin-right: 24px;
  714. text-align: right;
  715. width: 33%;
  716. }
  717. .entry-content blockquote.right {
  718. float: right;
  719. margin-left: 24px;
  720. margin-right: 0;
  721. text-align: left;
  722. width: 33%;
  723. }
  724. .page-link {
  725. color: #000;
  726. font-weight: bold;
  727. margin: 0 0 22px 0;
  728. word-spacing: 0.5em;
  729. }
  730. .page-link a:link,
  731. .page-link a:visited {
  732. background: #f1f1f1;
  733. color: #333;
  734. font-weight: normal;
  735. padding: 0.5em 0.75em;
  736. text-decoration: none;
  737. }
  738. .home .sticky .page-link a {
  739. background: #d9e8f7;
  740. }
  741. .page-link a:active,
  742. .page-link a:hover {
  743. color: #ff4b33;
  744. }
  745. body.page .edit-link {
  746. clear: both;
  747. display: block;
  748. }
  749. #entry-author-info {
  750. background: #f2f7fc;
  751. border-top: 4px solid #000;
  752. clear: both;
  753. font-size: 14px;
  754. line-height: 20px;
  755. margin: 24px 0;
  756. overflow: hidden;
  757. padding: 18px 20px;
  758. }
  759. #entry-author-info #author-avatar {
  760. background: #fff;
  761. border: 1px solid #e7e7e7;
  762. float: left;
  763. height: 60px;
  764. margin: 0 -104px 0 0;
  765. padding: 11px;
  766. }
  767. #entry-author-info #author-description {
  768. float: left;
  769. margin: 0 0 0 104px;
  770. }
  771. #entry-author-info h2 {
  772. color: #000;
  773. font-size: 100%;
  774. font-weight: bold;
  775. margin-bottom: 0;
  776. }
  777. .entry-utility {
  778. clear: both;
  779. color: #888;
  780. font-size: 12px;
  781. line-height: 18px;
  782. }
  783. .entry-meta a,
  784. .entry-utility a {
  785. color: #888;
  786. }
  787. .entry-meta a:hover,
  788. .entry-utility a:hover {
  789. color: #ff4b33;
  790. }
  791. #content .video-player {
  792. padding: 0;
  793. }
  794. .date {
  795. float: right;
  796. margin: -20px 0 20px 50px;
  797. color: #000;
  798. font-family: "Courier New", Courier, mono;
  799. }
  800. /* =Asides
  801. -------------------------------------------------------------- */
  802. .home #content .category-asides p {
  803. font-size: 14px;
  804. line-height: 20px;
  805. margin-bottom: 10px;
  806. margin-top: 0;
  807. }
  808. .home .hentry.category-asides {
  809. padding: 0;
  810. }
  811. .home #content .category-asides .entry-content {
  812. padding-top: 0;
  813. }
  814. /* =Gallery listing
  815. -------------------------------------------------------------- */
  816. .category-gallery .size-thumbnail img {
  817. border: 10px solid #f1f1f1;
  818. margin-bottom: 0;
  819. }
  820. .category-gallery .gallery-thumb {
  821. float: left;
  822. margin-right: 20px;
  823. margin-top: -4px;
  824. }
  825. .home #content .category-gallery .entry-utility {
  826. padding-top: 4px;
  827. }
  828. /* =Attachment pages
  829. -------------------------------------------------------------- */
  830. .single-attachment .hentry {
  831. margin: 0px;
  832. }
  833. .attachment .entry-content .entry-caption {
  834. font-size: 140%;
  835. margin-top: 24px;
  836. }
  837. .entry-caption-attachment {
  838. margin: 0px auto 0;
  839. text-align: center;
  840. }
  841. #content .entry-caption-attachment h2.entry-title {
  842. margin: 0 0 5px;
  843. font-weight: normal;
  844. }
  845. #content .entry-caption-parent p.page-title {
  846. margin: -30px 0 0 0;
  847. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  848. }
  849. #content .entry-caption-parent p.page-title a {
  850. color: #555;
  851. }
  852. #content .entry-caption-attachment p {
  853. font-size: 14px;
  854. text-indent: 0px;
  855. line-height: 15px;
  856. margin-bottom: 0px;
  857. }
  858. .entry-caption-attachment h2 {
  859. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  860. }
  861. .attachment .entry-content .nav-previous a:before {
  862. content: '\2190\00a0';
  863. }
  864. .attachment .entry-content .nav-next a:after {
  865. content: '\00a0\2192';
  866. }
  867. /* =Images
  868. -------------------------------------------------------------- */
  869. #content img {
  870. max-width: 880px;
  871. }
  872. #content .home img {
  873. border: 15px solid #000;
  874. }
  875. #content .attachment img {
  876. max-width: 900px;
  877. }
  878. #content .alignleft,
  879. #content img.alignleft {
  880. display: inline;
  881. float: left;
  882. margin-right: 24px;
  883. margin-top: 4px;
  884. }
  885. #content .alignright,
  886. #content img.alignright {
  887. display: inline;
  888. float: right;
  889. margin-left: 24px;
  890. margin-top: 4px;
  891. }
  892. #content .aligncenter,
  893. #content img.aligncenter {
  894. clear: both;
  895. display: block;
  896. margin-left: auto;
  897. margin-right: auto;
  898. }
  899. #content img.alignleft,
  900. #content img.alignright,
  901. #content img.aligncenter {
  902. margin-bottom: 12px;
  903. }
  904. #content .wp-caption {
  905. background: #f1f1f1;
  906. line-height: 18px;
  907. margin-bottom: 20px;
  908. padding: 4px;
  909. text-align: center;
  910. }
  911. #content .wp-caption img {
  912. margin: 5px 5px 0;
  913. }
  914. #content .wp-caption p.wp-caption-text {
  915. color: #888;
  916. font-size: 12px;
  917. margin: 5px;
  918. }
  919. #content .wp-smiley {
  920. margin: 0;
  921. }
  922. #content .gallery {
  923. margin: 0 auto 18px;
  924. }
  925. #content .gallery .gallery-item {
  926. float: left;
  927. margin-top: 0;
  928. text-align: center;
  929. width: 33%;
  930. }
  931. #content .gallery img {
  932. border: 2px solid #cfcfcf;
  933. }
  934. #content .gallery .gallery-caption {
  935. color: #888;
  936. font-size: 12px;
  937. margin: 0 0 12px;
  938. }
  939. #content .gallery dl {
  940. margin: 0;
  941. }
  942. #content .gallery img {
  943. border: 10px solid #f1f1f1;
  944. }
  945. #content .gallery br+br {
  946. display: none;
  947. }
  948. #content .attachment img { /* single attachment images should be centered */
  949. display: block;
  950. margin: 0 auto;
  951. }
  952. /* =Navigation
  953. -------------------------------------------------------------- */
  954. .navigation {
  955. color: #888;
  956. font-size: 12px;
  957. line-height: 18px;
  958. overflow: hidden;
  959. }
  960. .navigation a:link,
  961. .navigation a:visited {
  962. color: #888;
  963. text-decoration: none;
  964. }
  965. .navigation a:active,
  966. .navigation a:hover {
  967. color: #ff4b33;
  968. }
  969. .nav-previous {
  970. float: left;
  971. width: 50%;
  972. margin: 0 0 15px 0;
  973. }
  974. .nav-next {
  975. float: right;
  976. text-align: right;
  977. width: 50%;
  978. }
  979. #nav-above {
  980. margin: 0 0 18px 0;
  981. }
  982. #nav-above {
  983. display: none;
  984. }
  985. .paged #nav-above,
  986. .single #nav-above {
  987. display: block;
  988. }
  989. #nav-below {
  990. margin: -18px 0 0 0;
  991. }