Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 17.69 KB | None | 0 0
  1. /**
  2.  * iA Writer core.css:
  3.  * Base styles for all templates
  4.  *
  5.  * - Generic
  6.  * - Base
  7.  * - Objects
  8.  *
  9.  * Notes:
  10.  * - CSS load order: normalize.css, core.css (base styles), style.css (theme styles)
  11.  * - Margins are in %s (of viewport or container width) via calc() to scale fluidly
  12.  * - Margin/padding scaling is declared in calc() for container width: 1080px, then stopped via @media
  13.  * - font-size is set on body using px for breakpoints, then rems or ems per element to scale
  14.  */
  15.  
  16. /* TOOLS */
  17.  
  18. /* box-sizing */
  19.  
  20. * {
  21.   box-sizing: border-box;
  22. }
  23.  
  24. /* GENERIC */
  25.  
  26. /* Fonts: NittiPro used for code across templates */
  27.  
  28. /* Regular versions on OS X, slim versions on iOS (assumes iOS will never have regular versions) */
  29. @font-face {
  30.   font-family: "NittiPro";
  31.   font-weight: 300;
  32.   font-style: normal;
  33.   src: local("NittiPro-SemiLight"), local("NittiPro-SemiLightSlim");
  34. }
  35.  
  36. @font-face {
  37.   font-family: "NittiPro";
  38.   font-weight: 300;
  39.   font-style: italic;
  40.   src: local("NittiPro-SemiLightItalic"), local("NittiPro-SemiLightItalicSlim");
  41. }
  42.  
  43. @font-face {
  44.   font-family: "NittiPro";
  45.   font-weight: 500;
  46.   font-style: normal;
  47.   src: local("NittiPro-Medium"), local("NittiPro-MediumSlim");
  48. }
  49.  
  50. @font-face {
  51.   font-family: "NittiPro";
  52.   font-weight: 500;
  53.   font-style: italic;
  54.   src: local("NittiPro-MediumItalic"), local("NittiPro-MediumItalicSlim");
  55. }
  56.  
  57. /* BASE */
  58.  
  59. html,
  60. a {
  61.   color: #1a1a1a;
  62. }
  63.  
  64. html {
  65.   background-color: #f9f9f9; /* iOS background color */
  66. }
  67.  
  68. body {
  69.   box-sizing: content-box; /* So measure calculations don’t need to include gutters */
  70.   margin: 0 auto;
  71.   padding: 0 12px; /* 12px gutters to match iPhone 5 Title bar UI */
  72.   word-wrap: break-word;
  73.   text-rendering: optimizeLegibility; /* NOTE May cause performance issues */
  74.   /* font-kerning is enabled by default in OS X Safari 7+ */
  75.   -webkit-font-kerning: normal;
  76.   font-kerning: normal;
  77. }
  78.  
  79. /* Accessibility sizing for iOS phones */
  80. .content-size-xs > body {
  81.   font-size: 80%;
  82. }
  83.  
  84. .content-size-s > body {
  85.   font-size: 87%;
  86. }
  87.  
  88. .content-size-m > body {
  89.   font-size: 93%;
  90. }
  91.  
  92. .content-size-xl > body {
  93.   font-size: 113%;
  94. }
  95.  
  96. .content-size-xxl > body {
  97.   font-size: 127%;
  98. }
  99.  
  100. .content-size-xxxl > body {
  101.   font-size: 140%;
  102. }
  103.  
  104. .content-size-accessibility-m > body {
  105.   font-size: 153%;
  106. }
  107.  
  108. .content-size-accessibility-l > body {
  109.   font-size: 167%;
  110. }
  111.  
  112. .content-size-accessibility-xl > body {
  113.   font-size: 180%;
  114. }
  115.  
  116. .content-size-accessibility-xxl > body {
  117.   font-size: 193%;
  118. }
  119.  
  120. .content-size-accessibility-xxxl > body {
  121.   font-size: 207%;
  122. }
  123.  
  124. body > *:first-child {
  125.    margin-top: 0;
  126. }
  127.  
  128. /* iOS gutters responsive adjustments */
  129.  
  130. body {
  131.     --padding: 10px;
  132.     padding-left: var(--padding);
  133.     padding-right: var(--padding);
  134. }
  135.  
  136. @supports (padding: constant(safe-area-inset-left)) and (padding: constant(safe-area-inset-right)) {
  137.     body {
  138.         padding-left: calc(var(--padding) + constant(safe-area-inset-left));
  139.         padding-right: calc(var(--padding) + constant(safe-area-inset-right));
  140.     }
  141. }
  142.  
  143. @supports (padding: env(safe-area-inset-left)) and (padding: env(safe-area-inset-right)) {
  144.     body {
  145.         padding-left: calc(var(--padding) + env(safe-area-inset-left));
  146.         padding-right: calc(var(--padding) + env(safe-area-inset-right));
  147.     }
  148. }
  149.  
  150. /* iPhone 6 */
  151. @media screen and (min-width: 375px) {
  152.   body {
  153.     --padding: 22px;
  154.   }
  155. }
  156.  
  157. /* iPhone 6+ */
  158. @media screen and (min-width: 414px) {
  159.   body {
  160.     --padding: 24px;
  161.   }
  162. }
  163.  
  164. @media screen and (min-width: 480px) {
  165.   body {
  166.     --padding: 32px;
  167.   }
  168. }
  169.  
  170. @media screen and (min-width: 600px) {
  171.   body {
  172.     --padding: 48px;
  173.   }
  174. }
  175.  
  176. /* iPad triggered on 760 not 768 to work with fonts */
  177. @media screen and (min-width: 760px) and (max-device-width: 1024px) {
  178.   body {
  179.     --padding: 70px;
  180.   }
  181. }
  182.  
  183. /* Responsive adjustments for OS X */
  184. @media screen and (min-device-width: 1152px) {
  185.   html {
  186.     background-color: #fcfcfc;
  187.   }
  188.  
  189.   body {
  190.     --padding: 24px;
  191.   }
  192. }
  193.  
  194. @media screen and (min-width: 480px) and (min-device-width: 1152px) {
  195.   body {
  196.     --padding: 48px;
  197.   }
  198. }
  199.  
  200. @media screen and (min-width: 640px) and (min-device-width: 1152px) {
  201.   body {
  202.     --padding: 72px;
  203.   }
  204. }
  205.  
  206.  
  207. /* Headings */
  208.  
  209. body > h1:first-child {
  210.   margin-top: 0; /* Controlled via body padding-top */
  211. }
  212.  
  213. /* Unify space above initial heading in blockquotes (based on 31px line-height) */
  214. blockquote > :-webkit-any(h1, h2, h3, h4, h5):first-child {
  215.   margin-top: calc((21 / 1080) * 100%); /* 20px when width: 1080px */
  216.   padding-top: calc((10 / 1080) * 100%);/* 10px when width: 1080px */
  217. }
  218.  
  219. @media screen and (min-width: 1080px) {
  220.   blockquote > :-webkit-any(h1, h2, h3, h4, h5):first-child {
  221.     margin-top: 21px;
  222.     padding-top: 10px;
  223.   }
  224. }
  225.  
  226. /* Display h6 as run-in by default when followed by p
  227.    (h6 is no longer run-in if content is greater than one line long. Display can break if consecutive h6s are used before a <1 line p)
  228.    Note: Specced ways to do this display:run-in and :has() are not implemented at time of writing */
  229. h6 {
  230.   float: left;
  231.   margin: 0 0.5em 0 0; /* 9px @ font-size: 18px */
  232. }
  233.  
  234.   /* Clear all siblings after floated h6… */
  235. h6 ~ * {
  236.   clear: both;
  237. }
  238.  
  239.   /* …except immediately following paragraph */
  240. h6 + p {
  241.   clear: none;
  242. }
  243.  
  244. /* Responsive list padding (default used by Sans, overridden for Mono and Serif) */
  245. ul,
  246. ol {
  247.   padding-left: 1.5rem; /* 22.5px for font-size: 15px @320px. rem works better for RWD than % */
  248. }
  249.  
  250. @media screen and (min-width: 760px) {
  251.   /* Left padding based on 40px browser default */
  252.   ul,
  253.   ol {
  254.     padding-left: 2.2222rem; /* ~40px for font-size: 18px. rem works better for RWD than % */
  255.   }
  256. }
  257.  
  258. /* HACK: Prevent empty list items collapsing
  259.    Note this doesn’t work for paragraph lists, although we can fix via class or once has() is supported with: `ul li:not:has(p)::after` */
  260. ul li:empty::after,
  261. .task-list-item:last-child::after {
  262.   content: "";
  263.   display: inline-block;
  264. }
  265.  
  266. dd {
  267.   -webkit-margin-start: 2.2222rem; /* ~40px for font-size: 18px. rem works better for RWD than % */
  268.   margin-start: 2.2222rem;
  269. }
  270.  
  271. /* Remove vertical margins on nested lists */
  272. :-webkit-any(li, dt, dd, th, td) > :-webkit-any(ul, ol, dl) {
  273.   margin-top: 0;
  274.   margin-bottom: 0;
  275. }
  276.  
  277. /* Override vertical margin above paragraph list items */
  278. :-webkit-any(li) > :-webkit-any(p, pre, figure, img) {
  279.     margin-top: 0;
  280. }
  281.  
  282. /* img is wrapped in p on export by default, so leave as inline */
  283. img {
  284.   max-width: 100%;
  285.   vertical-align: top;
  286. }
  287.  
  288. figure img {
  289.   display: block;
  290. }
  291.  
  292. figcaption {
  293.     text-align: center;
  294.     font-style: italic;
  295. }
  296.  
  297. hr {
  298.   clear: both;
  299.   margin: 3rem auto 3rem; /* Extra-large for visibility in mini-map (<100px wide) */
  300.   border: 0;
  301.   border-bottom: 1px #e6e6e6 solid;
  302. }
  303.  
  304. /* More reasonable default to override per template */
  305. @media screen and (min-width: 100px) {
  306.   hr {
  307.     margin-top: 2rem;
  308.     margin-bottom: 2rem;
  309.   }
  310. }
  311.  
  312. /* Horizontal rule responsive adjustments */
  313. @media screen and (min-width: 1080px) {
  314.   hr {
  315.     margin-top: 46px;
  316.     margin-bottom: 46px;
  317.   }
  318. }
  319.  
  320.  
  321. /* table-layout: fixed; produces equal-width columns, which is generally a better result */
  322. table {
  323.   table-layout: fixed;
  324.   width: 100%;
  325.   border-top: 1px #e6e6e6 solid;
  326.   border-bottom: 1px #e6e6e6 solid;
  327.   border-collapse: collapse;
  328.   font-size: calc((15 / 18) * 1rem); /* 0.8333rem = 15px @ font-size: 18px */
  329.   line-height: calc(24 / 15); /* 1.6 = 24px @ font-size: 15px */
  330.   font-variant-numeric: tabular-nums;
  331.   -moz-font-feature-settings: "tnum";
  332.   -webkit-font-feature-settings: "tnum";
  333.   font-feature-settings: "tnum";
  334. }
  335.  
  336. caption {
  337.   caption-side: bottom;
  338.   font-style: italic;
  339.   font-size: 1rem;
  340. }
  341.  
  342. caption, figcaption {
  343.     padding-top: calc((20 / 1080) * 100%); /* 10px when width: 1080px */
  344.     padding-bottom: calc((10 / 1080) * 100%); /* 10px when width: 1080px */
  345. }
  346.  
  347. tbody {
  348.   border-top: 1px #e6e6e6 solid;
  349. }
  350.  
  351. th,
  352. td {
  353.   margin-right: calc((30 / 1080) * 100%); /* 30px when width: 1080px */
  354.   padding: calc((10 / 1080) * 100%) 0 calc((10 / 1080) * 100%); /* 10px 0 10px when width: 1080px */
  355.   vertical-align: top;
  356.   text-align: left;
  357. }
  358.  
  359. /* Table cell responsive adjustments */
  360. @media screen and (min-width: 1080px) {
  361.   caption,
  362.   th,
  363.   td {
  364.     padding-top: 10px;
  365.     padding-bottom: 10px;
  366.   }
  367.  
  368.   th,
  369.   td {
  370.     margin-right: 30px;
  371.   }
  372. }
  373.  
  374. th:last-of-type,
  375. td:last-of-type {
  376.   margin-right: 0;
  377. }
  378.  
  379. /* Code */
  380.  
  381. pre,
  382. code,
  383. kbd {
  384.   border-radius: 2px;
  385.   white-space: pre-wrap;
  386.   background-color: #f0f0f0;
  387. }
  388.  
  389. figure pre {
  390.   margin-top: 0;
  391. }
  392.  
  393. pre {
  394.   padding: 1rem;
  395.   overflow: hidden;
  396. }
  397.  
  398. pre code {
  399.   padding: 0;
  400. }
  401.  
  402. code,
  403. samp,
  404. kbd {
  405.   font-family: "NittiPro", "Keyboard", monospace;
  406.   font-size: calc((15 / 19) * 1em); /* 0.7895em = 15px @ font-size: 19px (based on 12/16px @640 = 15.2px). Values for Serif (smallest), others need overrides */
  407.   font-weight: 200; /* Light weight for non-Retina (@1x) */
  408. }
  409.  
  410. /* Semi-light weight for Retina (@2x) */
  411. @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), print {
  412.   code,
  413.   samp,
  414.   kbd {
  415.     font-weight: 300;
  416.   }
  417. }
  418.  
  419. /* Use 500 not 700 for code that inherits bold. This is supplimented for titles etc per template  */
  420. :-webkit-any(strong, bold, th) :-webkit-any(code, samp, kbd) {
  421.   font-weight: 500;
  422. }
  423.  
  424. code,
  425. kbd {
  426.   padding: 0.08333em 0.1667em 0.1667em; /* ~1px 2px 2px when font-size: 12px, taking 1px border into account */
  427. }
  428.  
  429. /* Prevent code line-height increasing heading line-height */
  430. :-webkit-any(h1, h2, h3, h4, h5, h6) > code, kbd {
  431.   line-height: normal;
  432. }
  433.  
  434. /* Print styles */
  435. @media print {
  436.  
  437.   *,
  438.   *:before,
  439.   *:after {
  440.     color: #000 !important; /* black prints faster */
  441.     box-shadow: none !important;
  442.     text-shadow: none !important;
  443.   }
  444.  
  445.   html {
  446.     margin: 0; /* Override for safety */
  447.     padding: 0; /* Override for safety */
  448.     font-size: 9pt; /* ← needs to be set per template to counter responsive typography */
  449.     background: transparent !important; /* Only on html due to checkboxes */
  450.   }
  451.  
  452.   body {
  453.     margin: 0 auto; /* Set all values for safety */
  454.     padding: 12pt 50pt; /* Set all values for safety */
  455.   }
  456.  
  457.   /* Make sure there’s no margin-top on first element */
  458.   body > :first-child {
  459.     margin-top: 0;
  460.   }
  461.  
  462.   /* h6 excluded as the page-break-inside rule conflicts with page-initial inline h6 when printed */
  463.   h1,
  464.   h2,
  465.   h3,
  466.   h4,
  467.   h5,
  468.   img,
  469.   figure {
  470.     page-break-inside: avoid;
  471.     page-break-after: avoid; /* Not supported by Webkit at time of writing, ref: https://bugs.webkit.org/show_bug.cgi?id=5097 */
  472.   }
  473.  
  474.   p {
  475.     /* Not supported by Webkit at time of writing, ref: https://bugs.webkit.org/show_bug.cgi?id=39735 */
  476.     widows: 3;
  477.     orphans: 3;
  478.   }
  479.  
  480.   hr {
  481.     border-bottom-color: #000 !important;
  482.   }
  483.  
  484.   /* Underline on superscript footnote number, which when clicked shows an error */
  485.   .footnote {
  486.     text-decoration: none;
  487.   }
  488.  
  489.   /* Underline for table of contents on printed pages */
  490.   .TOC a {
  491.     text-decoration: none;
  492.   }
  493.  
  494.   /* Link which allows you to go back to the text from footnote—useless on a printed page */
  495.   .reversefootnote {
  496.     display: none;
  497.   }
  498.  
  499.   /* Code has a lighter background on printed pages */
  500.   code, pre, kbd {
  501.     background-color: #f7f7f7;
  502.   }
  503.  
  504.   .tooltip:after {
  505.     display: none;
  506.   }
  507. }
  508.  
  509.  
  510. /* OBJECTS */
  511.  
  512. /* Center Headings
  513.    Center h1-h5 headings, via the Centered Headings setting */
  514. .center-headings :-webkit-any(h1, h2, h3, h4, h5) {
  515.   text-align: center;
  516. }
  517.  
  518. /* Indent Paragraphs
  519.    Indent the first line of sequential paragraphs, via the Indent Paragraph setting */
  520. .indent-paragraphs p + p {
  521.   margin-top: 0;
  522.   text-indent: 1.2em; /* Tweaked per template */
  523. }
  524.  
  525. /* Night Mode */
  526.  
  527. .night-mode,
  528. .night-mode a {
  529.   color: #dedede; /* iOS text color */
  530. }
  531.  
  532. .night-mode {
  533.   background-color: #101010; /* iOS background color */
  534. }
  535.  
  536. .night-mode pre,
  537. .night-mode code,
  538. .night-mode kbd {
  539.   background-color: #292927; /* For iOS */
  540. }
  541.  
  542. /* Colors for OS X */
  543. @media screen and (min-device-width: 1152px) {
  544.   .night-mode,
  545.   .night-mode a {
  546.     color: #cccccc; /* OS X text color */
  547.   }
  548.  
  549.   .night-mode {
  550.     background-color: #101010;
  551.   }
  552.  
  553.   .night-mode pre,
  554.   .night-mode code,
  555.   .night-mode kbd {
  556.     background-color: #282827;
  557.   }
  558. }
  559.  
  560. /* Fake sub-pixel lines */
  561. .night-mode hr,
  562. .night-mode caption,
  563. .night-mode tbody th,
  564. .night-mode td {
  565.   border-bottom-color: #666;
  566. }
  567.  
  568. .night-mode tbody th,
  569. .night-mode td {
  570.   border-top-color: #666;
  571. }
  572.  
  573. /* Footnotes */
  574.  
  575. .footnotes {
  576.   margin-top: calc((45 / 1080) * 100%); /* 45px when width: 1080px (excluding padding) */
  577.   page-break-before: avoid;
  578.   font-size: calc((16 / 18) * 1rem); /* 0.8889rem, 16/18px @1080px wide, default for Monospace */
  579.   line-height: calc(27 / 16); /* 1.6875, 27px @1080px wide, default for Monospace */
  580. }
  581.  
  582. .footnotes hr {
  583.   margin-top: calc((60 / 760) * 100%); /* 60px when width: 1080px */
  584.   page-break-after: avoid;
  585. }
  586.  
  587. .footnotes p {
  588.   margin: 0 auto;
  589. }
  590.  
  591. /* Remove underline on .reversefootnote arrow for iOS, as it’s turned into an emoji */
  592. @media screen and (max-device-width: 1024px) {
  593.   .reversefootnote {
  594.     text-decoration: none;
  595.   }
  596. }
  597.  
  598. /* Footnotes responsive adjustments when width: 1080px */
  599. @media screen and (min-width: 1080px) {
  600.   .footnotes {
  601.     margin-top: 45px;
  602.   }
  603.  
  604.   /* Hanging footnote ordinals */
  605.   .footnotes ol {
  606.     padding-left: 0;
  607.   }
  608.  
  609.   .footnotes hr {
  610.     margin-top: 60px;
  611.   }
  612. }
  613.  
  614. /* Task Lists
  615.    Left padding based on 40px default */
  616.  
  617. /* Position ordinal counters so 1-9 left-align with left content edge. Subsequent counters will begin in gutter. */
  618. ol .task-list-item {
  619.   margin-left: -0.6667rem; /* ~-10px @ font-size: 15px */
  620.   padding-left: 0.6667rem; /* ~10px @ font-size: 15px */
  621. }
  622.  
  623. /* Hide default bullets for unordered task lists. */
  624. ul .task-list-item {
  625.   list-style-type: none;
  626. }
  627.  
  628. /* Hide gen-content bullets for unordered task lists. */
  629. ul .task-list-item:before {
  630.   display: none;
  631. }
  632.  
  633. .task-list-item-checkbox {
  634.   float: left; /* Removes from flow in case of paragraph list items */
  635.   width: 1.6rem; /* Same as p line-height (changing width/height affects svg size) */
  636.   height: 1.6rem; /* Same as width */
  637.   margin: 0 0 0 -1.6rem; /* 0s to overwrite user agent styles */
  638.   border: none; /* Otherwise iPhone draws a border */
  639.   font-size: 1rem; /* Required to overwrite user agent styles, set to same as p */
  640.   background-image: url('box.svg');
  641.   background-repeat: no-repeat;
  642.   background-position: 40% 40%; /* x=roughly align with bullets and between ordinal and text, y=4px down to roughly align to baseline. */
  643.   background-size: 50% 50%; /* Desired size 12px / 21px line-height for Preview */
  644.   background-color: transparent;
  645.   -webkit-print-color-adjust: exact; /* Prevents from hiding when printed */
  646.   -webkit-appearance: none; /* Disables system checkbox image */
  647.   opacity: 1.0; /* Otherwise they are 0.4 on iPhone, where it applies disabled effect even with above */
  648. }
  649.  
  650. .task-list-item-checkbox:checked {
  651.   background-image: url('check.svg');
  652. }
  653.  
  654. /* Checkbox color in Night Mode (=text color) */
  655. .night-mode .task-list-item-checkbox {
  656.   background-image: url('box-night-mode-ios.svg');
  657. }
  658.  
  659. .night-mode .task-list-item-checkbox:checked {
  660.   background-image: url('check-night-mode-ios.svg');
  661. }
  662.  
  663. /* OS X color */
  664. @media screen and (min-device-width: 1152px) {
  665.   .night-mode .task-list-item-checkbox {
  666.     background-image: url('box-night-mode-osx.svg');
  667.   }
  668.  
  669.   .night-mode .task-list-item-checkbox:checked {
  670.     background-image: url('check-night-mode-osx.svg');
  671.   }
  672. }
  673.  
  674. .header, .footer {
  675.   margin-top: 30px;
  676.   margin-bottom: 30px;
  677.   text-align: center;
  678. }
  679.  
  680. .title {
  681.   margin-top: 40%;
  682. }
  683.  
  684. address {
  685.     text-align: right;
  686.     white-space: pre;
  687. }
  688.  
  689.  
  690. /* Smart Table ToolTips */
  691.  
  692. .tooltip {
  693.     position: relative;
  694. }
  695.  
  696. table .tooltip:after {
  697.     font-size: 10px;
  698.     font-weight: bold;
  699.     background: rgba(0, 0, 0, 0);
  700.     color: rgba(0, 0, 0, 0);
  701.     border-radius: 2px;
  702.     top: calc(50% - 10px);
  703.     left: 0%;
  704.     content: attr(id);
  705.     padding: 2px 4px;
  706.     position: absolute;
  707.     z-index: 98;
  708.     -webkit-user-select: none;
  709.     user-select: none;
  710. }
  711.  
  712. table:hover .tooltip:after {
  713.     /* Tooltips are always visible, and use transparent background and text color unless table is hovered because WebKit has a bug where table caption jumps around if table cells get a new abolutely positioned element inside. */
  714.     color: #fff;
  715.     background-color: #000;
  716. }
  717.  
  718. /* Automatic Heading Numbering */
  719.  
  720. /* Thanks to Phil Archer. http://philarcher.org/diary/2013/headingnumbers/ */
  721.  
  722. .number-headings body {counter-reset: h2}
  723. .number-headings h2 {counter-reset: h3}
  724. .number-headings h3 {counter-reset: h4}
  725. .number-headings h4 {counter-reset: h5}
  726. /* .number-headings h5 {counter-reset: h6} */ /* Omitted H6. Inline headings are useful in non-hierarchical contexts */
  727. .number-headings h2:before {counter-increment: h2; content: counter(h2) ". "}
  728. .number-headings h3:before {counter-increment: h3; content: counter(h2) "." counter(h3) ". "}
  729. .number-headings h4:before {counter-increment: h4; content: counter(h2) "." counter(h3) "." counter(h4) ". "}
  730. .number-headings h5:before {counter-increment: h5; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
  731. /* .number-headings h6:before {counter-increment: h6; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "} */ /* H6 omitted as above */
  732. .number-headings h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {content: ""; counter-increment: none}
  733.  
  734. /* Don't number author H2 on title page */
  735. .title > h2:before {content: ""}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement