style.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289
  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: rgba(160,160,160,0.73) url(img/3.png);
  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: #777;
  777. font: 14px/18px "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. /* =Comments
  805. -------------------------------------------------------------- */
  806. .commentbubble {
  807. font-size: 12px;
  808. color: #777;
  809. float: right;
  810. margin: 0 55px 0 0;
  811. }
  812. .comment {
  813. padding: 10px;
  814. }
  815. .commentbubble a.toogle-comments {
  816. float: right;
  817. text-align: right;
  818. }
  819. .comments-area {
  820. background: #ebebeb;
  821. padding: 15px;
  822. }
  823. #content .comments-area p {
  824. margin: 0 0 8px;
  825. font-size: 13px;
  826. }
  827. #content .comments-area .reply {
  828. margin: 5px 8px 0px;
  829. padding: 2px 9px;
  830. background: #ebeaea;
  831. font-size: 11px;
  832. }
  833. .comments-title {
  834. margin-bottom: 48px;
  835. margin-bottom: 3.428571429rem;
  836. font-size: 16px;
  837. font-size: 1.142857143rem;
  838. line-height: 1.5;
  839. font-weight: normal;
  840. }
  841. .comments-area {
  842. margin: 0px 50px;
  843. }
  844. .comments-area ul {
  845. margin: 0px 0px;
  846. list-style: none;
  847. }
  848. .comments-area h3 {
  849. margin: 0 0 0;
  850. }
  851. .comments-meta {
  852. font-size: 10px;
  853. }
  854. .comments-area article {
  855. margin: 24px 0;
  856. }
  857. .comments-area article header {
  858. margin: 0 0 48px;
  859. overflow: hidden;
  860. position: relative;
  861. }
  862. .comments-area article header img {
  863. float: left;
  864. padding: 0;
  865. line-height: 0;
  866. }
  867. .comments-area article header cite,
  868. .comments-area article header time {
  869. display: block;
  870. margin-left: 85px;
  871. }
  872. .comments-area article header cite {
  873. font-style: normal;
  874. font-size: 15px;
  875. }
  876. .comments-area cite b {
  877. font-weight: normal;
  878. }
  879. .comments-area article header time {
  880. text-decoration: none;
  881. font-size: 12px;
  882. color: #5e5e5e;
  883. }
  884. .comments-area article header a {
  885. text-decoration: none;
  886. color: #5e5e5e;
  887. }
  888. .comments-area article header a:hover {
  889. color: #21759b;
  890. }
  891. .comments-area article header cite a {
  892. color: #444;
  893. }
  894. .comments-area article header cite a:hover {
  895. text-decoration: underline;
  896. }
  897. a.comment-reply-link,
  898. a.comment-edit-link {
  899. color: #686868;
  900. font-size: 13px;
  901. }
  902. a.comment-reply-link:hover,
  903. a.comment-edit-link:hover {
  904. color: #21759b;
  905. }
  906. .commentlist .pingback {
  907. line-height: 1.714285714;
  908. margin-bottom: 24px;
  909. }
  910. li.comment.even {
  911. background: #fff;
  912. }
  913. li.comment.odd {
  914. background: #f3f3f3;
  915. }
  916. li.comment.thread-even {
  917. background: #f5f5f5;
  918. }
  919. li.comment.thread-odd {
  920. background: #fff;
  921. }
  922. .comment-meta {
  923. font-size: 11px;
  924. line-height: 12px;
  925. }
  926. .comment-meta a {
  927. color: #777;
  928. float: right;
  929. }
  930. /* Comment form */
  931. #respond {
  932. margin-top: 10px;
  933. }
  934. #respond h3#reply-title {
  935. margin: 0px 8px 0px;
  936. padding: 2px 9px;
  937. background: #ebeaea;
  938. font-size: 11px;
  939. margin: 0;
  940. }
  941. #respond h3#reply-title #cancel-comment-reply-link {
  942. margin-left: 10px;
  943. font-weight: normal;
  944. font-size: 12px;
  945. font-size: 0.857142857rem;
  946. }
  947. #respond form {
  948. margin: 24px 0;
  949. margin: 1.714285714rem 0;
  950. }
  951. #respond form p {
  952. margin: 11px 0;
  953. margin: 0.785714286rem 0;
  954. }
  955. #respond form p.logged-in-as {
  956. margin-bottom: 24px;
  957. margin-bottom: 1.714285714rem;
  958. }
  959. #respond form label {
  960. display: block;
  961. line-height: 1.714285714;
  962. }
  963. #respond form input[type="text"],
  964. #respond form textarea {
  965. -moz-box-sizing: border-box;
  966. box-sizing: border-box;
  967. font: 0.857142857rem "Courier New", Courier, mono;
  968. line-height: 1.714285714;
  969. padding: 10px;
  970. padding: 0.714285714rem;
  971. width: 100%;
  972. }
  973. #respond form p.form-allowed-tags {
  974. margin: 0;
  975. font-size: 12px;
  976. font-size: 0.857142857rem;
  977. line-height: 2;
  978. color: #5e5e5e;
  979. }
  980. .required {
  981. color: red;
  982. }
  983. img.avatar {
  984. width: 20px;
  985. height: 20px;
  986. margin: 0 0 -5px;
  987. }
  988. /* =Asides
  989. -------------------------------------------------------------- */
  990. .home #content .category-asides p {
  991. font-size: 14px;
  992. line-height: 20px;
  993. margin-bottom: 10px;
  994. margin-top: 0;
  995. }
  996. .home .hentry.category-asides {
  997. padding: 0;
  998. }
  999. .home #content .category-asides .entry-content {
  1000. padding-top: 0;
  1001. }
  1002. /* =Gallery listing
  1003. -------------------------------------------------------------- */
  1004. .category-gallery .size-thumbnail img {
  1005. border: 10px solid #f1f1f1;
  1006. margin-bottom: 0;
  1007. }
  1008. .category-gallery .gallery-thumb {
  1009. float: left;
  1010. margin-right: 20px;
  1011. margin-top: -4px;
  1012. }
  1013. .home #content .category-gallery .entry-utility {
  1014. padding-top: 4px;
  1015. }
  1016. /* =Attachment pages
  1017. -------------------------------------------------------------- */
  1018. .single-attachment .hentry {
  1019. margin: 0px;
  1020. }
  1021. .attachment .entry-content .entry-caption {
  1022. font-size: 140%;
  1023. margin-top: 24px;
  1024. }
  1025. .entry-caption-attachment {
  1026. margin: 0px auto 0;
  1027. text-align: center;
  1028. }
  1029. #content .entry-caption-attachment h2.entry-title {
  1030. margin: 0 0 5px;
  1031. font-weight: normal;
  1032. }
  1033. #content .entry-caption-parent p.page-title {
  1034. margin: -30px 0 0 0;
  1035. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1036. }
  1037. #content .entry-caption-parent p.page-title a {
  1038. color: #555;
  1039. }
  1040. #content .entry-caption-attachment p {
  1041. font-size: 14px;
  1042. text-indent: 0px;
  1043. line-height: 15px;
  1044. margin-bottom: 0px;
  1045. }
  1046. .entry-caption-attachment h2 {
  1047. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1048. }
  1049. .attachment .entry-content .nav-previous a:before {
  1050. content: '\2190\00a0';
  1051. }
  1052. .attachment .entry-content .nav-next a:after {
  1053. content: '\00a0\2192';
  1054. }
  1055. /* =Images
  1056. -------------------------------------------------------------- */
  1057. #content img {
  1058. max-width: 880px;
  1059. }
  1060. #content .home img {
  1061. border: 15px solid #000;
  1062. }
  1063. #content .attachment img {
  1064. max-width: 900px;
  1065. }
  1066. #content .alignleft,
  1067. #content img.alignleft {
  1068. display: inline;
  1069. float: left;
  1070. margin-right: 24px;
  1071. margin-top: 4px;
  1072. }
  1073. #content .alignright,
  1074. #content img.alignright {
  1075. display: inline;
  1076. float: right;
  1077. margin-left: 24px;
  1078. margin-top: 4px;
  1079. }
  1080. #content .aligncenter,
  1081. #content img.aligncenter {
  1082. clear: both;
  1083. display: block;
  1084. margin-left: auto;
  1085. margin-right: auto;
  1086. }
  1087. #content img.alignleft,
  1088. #content img.alignright,
  1089. #content img.aligncenter {
  1090. margin-bottom: 12px;
  1091. }
  1092. #content .wp-caption {
  1093. background: #f1f1f1;
  1094. line-height: 18px;
  1095. margin-bottom: 20px;
  1096. padding: 4px;
  1097. text-align: center;
  1098. }
  1099. #content .wp-caption img {
  1100. margin: 5px 5px 0;
  1101. }
  1102. #content .wp-caption p.wp-caption-text {
  1103. color: #888;
  1104. font-size: 12px;
  1105. margin: 5px;
  1106. }
  1107. #content .wp-smiley {
  1108. margin: 0;
  1109. }
  1110. #content .gallery {
  1111. margin: 0 auto 18px;
  1112. }
  1113. #content .gallery .gallery-item {
  1114. float: left;
  1115. margin-top: 0;
  1116. text-align: center;
  1117. width: 33%;
  1118. }
  1119. #content .gallery img {
  1120. border: 2px solid #cfcfcf;
  1121. }
  1122. #content .gallery .gallery-caption {
  1123. color: #888;
  1124. font-size: 12px;
  1125. margin: 0 0 12px;
  1126. }
  1127. #content .gallery dl {
  1128. margin: 0;
  1129. }
  1130. #content .gallery img {
  1131. border: 10px solid #f1f1f1;
  1132. }
  1133. #content .gallery br+br {
  1134. display: none;
  1135. }
  1136. #content .attachment img { /* single attachment images should be centered */
  1137. display: block;
  1138. margin: 0 auto;
  1139. }
  1140. /* =Navigation
  1141. -------------------------------------------------------------- */
  1142. .navigation {
  1143. color: #888;
  1144. font-size: 12px;
  1145. line-height: 18px;
  1146. overflow: hidden;
  1147. clear: both;
  1148. }
  1149. .navigation a:link,
  1150. .navigation a:visited {
  1151. color: #888;
  1152. text-decoration: none;
  1153. }
  1154. .navigation a:active,
  1155. .navigation a:hover {
  1156. color: #ff4b33;
  1157. }
  1158. .nav-previous {
  1159. float: left;
  1160. width: 50%;
  1161. margin: 0 0 15px 0;
  1162. }
  1163. .nav-next {
  1164. float: right;
  1165. text-align: right;
  1166. width: 50%;
  1167. }
  1168. #nav-above {
  1169. margin: 0 0 18px 0;
  1170. }
  1171. #nav-above {
  1172. display: none;
  1173. }
  1174. .paged #nav-above,
  1175. .single #nav-above {
  1176. display: block;
  1177. }
  1178. #nav-below {
  1179. margin: 50px 0 0px;
  1180. padding: 20px 10px 0;
  1181. border-top: 1px solid #cecece;
  1182. }
  1183. .pagination {
  1184. margin-top: 40px;
  1185. border-top: 1px solid #cecece;
  1186. padding: 20px 0 0;
  1187. }
  1188. .pagination a {
  1189. padding: 4px 5px;
  1190. color: #fff;
  1191. font-weight: bold;
  1192. font-size: 16px;
  1193. }
  1194. .pagination a:active {
  1195. padding: 4px 5px;
  1196. background: #707071;
  1197. color:#fff;
  1198. }
  1199. .pagination a:hover {
  1200. padding: 4px 5px;
  1201. background: #fff;
  1202. color: #ec0000;
  1203. }
  1204. .pagination a.next,
  1205. .pagination a.prev {
  1206. padding: 4px 7px;
  1207. color: #ec0000;
  1208. font-weight: bold;
  1209. font-size: 27px;
  1210. }
  1211. .pagination .current {
  1212. padding: 4px 5px;
  1213. background: #fff;
  1214. color: #ec0000;
  1215. font-weight: bold;
  1216. font-size: 16px;
  1217. }
  1218. /* =Footer
  1219. -------------------------------------------------------------- */
  1220. p.cc {
  1221. float: right;
  1222. font-size: 14px;
  1223. margin: 2px 20px 30px 10px;
  1224. }
  1225. span.quiet {
  1226. display: none;
  1227. }
  1228. img.dw {
  1229. float: right;
  1230. margin: 0;
  1231. }