style.css 18 KB

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