diff options
| author | 2026-02-16 15:35:21 +0300 | |
|---|---|---|
| committer | 2026-02-16 15:46:18 +0300 | |
| commit | 7e04c30aff449da938ce80a6f030c22aaed9098d (patch) | |
| tree | d6722c601cebed6040c4272db643290056ad95c8 | |
| parent | line over heading (diff) | |
| download | base-7e04c30aff449da938ce80a6f030c22aaed9098d.tar.gz base-7e04c30aff449da938ce80a6f030c22aaed9098d.tar.bz2 base-7e04c30aff449da938ce80a6f030c22aaed9098d.tar.xz base-7e04c30aff449da938ce80a6f030c22aaed9098d.zip | |
Уменьшил отступы в мобильном виде
| -rw-r--r-- | assets/css/paper.css | 218 |
1 files changed, 113 insertions, 105 deletions
diff --git a/assets/css/paper.css b/assets/css/paper.css index eb6b982..a1319d8 100644 --- a/assets/css/paper.css +++ b/assets/css/paper.css @@ -1,14 +1,14 @@ html, body { - padding: 0px; - margin: 0px; - border: none; + padding: 0px; + margin: 0px; + border: none; } *, *::before, *::after { - box-sizing: border-box; + box-sizing: border-box; } h1, @@ -17,150 +17,158 @@ h3, h4, h5, h6 { - margin: 0; - /* line-height: 1; */ + margin: 0; + /* line-height: 1; */ } :root { - --bg: #ffffff; - --surface: #f8f9fa; - --border: #e3e3e3; - --text: #2e2e2e; - --text-secondary: #6c757d; - --link-color: rgb(40, 117, 251); + --bg: #ffffff; + --surface: #f8f9fa; + --border: #e3e3e3; + --text: #2e2e2e; + --text-secondary: #6c757d; + --link-color: rgb(40, 117, 251); } @media (prefers-color-scheme: dark) { - :root { - --bg: #1e1e1e; - --surface: #262626; - --border: #2a2a2a; - --text: #e0e0e0; - --text-secondary: #a8a8a8; - --shadow: 0 2px 8px rgba(0, 0, 0, 0.2); - --link-color: rgb(103, 158, 254); - } + :root { + --bg: #1e1e1e; + --surface: #262626; + --border: #2a2a2a; + --text: #e0e0e0; + --text-secondary: #a8a8a8; + --shadow: 0 2px 8px rgba(0, 0, 0, 0.2); + --link-color: rgb(103, 158, 254); + } } @media print { - - *, - *:before, - *:after, - *:first-letter, - p:first-line, - div:first-line, - blockquote:first-line, - li:first-line { - background: transparent !important; - color: #000 !important; - box-shadow: none !important; - text-shadow: none !important; - } - - :root { - --main-color: #000; - --background-color: #fff; - --main-background-color: #fff; - } - - main { - font-size: 12pt !important; - line-height: 1.4 !important; - --background-color: #fff !important; - } - - header { - display: none; - } - - footer { - display: none; - } - - article { - page-break-after: always; - border: 0 !important; - padding: 0 !important; - } - - a[href] { - color: #000; - } + *, + *:before, + *:after, + *:first-letter, + p:first-line, + div:first-line, + blockquote:first-line, + li:first-line { + background: transparent !important; + color: #000 !important; + box-shadow: none !important; + text-shadow: none !important; + } + + :root { + --main-color: #000; + --background-color: #fff; + --main-background-color: #fff; + } + + main { + font-size: 12pt !important; + line-height: 1.4 !important; + --background-color: #fff !important; + } + + header { + display: none; + } + + footer { + display: none; + } + + article { + page-break-after: always; + border: 0 !important; + padding: 0 !important; + } + + a[href] { + color: #000; + } } html { - background-color: var(--surface); - display: flex; - justify-content: center; - flex-direction: row; + background-color: var(--surface); + display: flex; + justify-content: center; + flex-direction: row; } body { - color: var(--text); - font-family: Arial, - Helvetica, - sans-serif; - line-height: 1.5; - width: 100%; - max-width: 1200px; + color: var(--text); + font-family: Arial, Helvetica, sans-serif; + line-height: 1.5; + width: 100%; + max-width: 1200px; } a { - color: var(--link-color); + color: var(--link-color); } header, footer { - padding: 0 2rem; + padding: 0 2rem; } main { - padding: 0 2rem; + padding: 0 2rem; } article { - background-color: var(--bg); - padding: 1.5em 2em; - margin: 1em 0; - border: 0.1px solid var(--border); + background-color: var(--bg); + padding: 1.5em 2em; + margin: 1em 0; + border: 0.1px solid var(--border); } - - -p { - orphans: 3; - widows: 4; +article p { + orphans: 3; + widows: 4; + text-align: justify; } figure { - max-width: 800px; + max-width: 800px; } - img { - max-width: 100%; + max-width: 100%; } @media (max-width: 900px) { - main { - font-size: 15px; - line-height: 1.5; - padding: 0 2em; - } + main { + font-size: 15px; + line-height: 1.5; + padding: 0 0.5em; + } + header, + footer { + padding: 0 0.5rem; + } + article { + padding: 0.5em; + } } @media (max-width: 480px) { - main { - font-size: 14px; - line-height: 1.4; - padding: 0 1em; - } + main { + font-size: 14px; + line-height: 1.4; + padding: 0 0.1em; + } + header, + footer { + padding: 0 0.1rem; + } + article { + padding: 0.5em 0.1em; + } } - pre, code { - max-width: 100%; - overflow-x: scroll; -}
\ No newline at end of file + max-width: 100%; + overflow-x: scroll; +} |
