diff options
author | Julien Dessaux | 2021-08-16 10:59:26 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-08-16 10:59:26 +0200 |
commit | 4bbf3e77884bb4749aff641f4e5e9d4d04aace05 (patch) | |
tree | 36bf851a6595edfedb94bced539201f7f7591d66 /assets | |
parent | Fixed html bug (diff) | |
download | www-4bbf3e77884bb4749aff641f4e5e9d4d04aace05.tar.gz www-4bbf3e77884bb4749aff641f4e5e9d4d04aace05.tar.bz2 www-4bbf3e77884bb4749aff641f4e5e9d4d04aace05.zip |
Fix w3c css validator errors and updated fonts
Diffstat (limited to 'assets')
-rw-r--r-- | assets/base.css | 8 | ||||
-rw-r--r-- | assets/pagination.css | 3 |
2 files changed, 4 insertions, 7 deletions
diff --git a/assets/base.css b/assets/base.css index c78775a..3784a60 100644 --- a/assets/base.css +++ b/assets/base.css @@ -5,16 +5,16 @@ body { display: grid; grid-template-rows: auto 1fr auto; - font-family: open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol; - font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; + font-feature-settings: "kern" 1; + font-kerning: normal; } p { text-align: justify; hyphens: auto; - hyphenate-limit-lines: 2; text-justify: inter-character; - word-break: break-word; + overflow-wrap: anywhere; } nav#TableOfContents ul { padding: 0; diff --git a/assets/pagination.css b/assets/pagination.css index 65f4480..ba568fb 100644 --- a/assets/pagination.css +++ b/assets/pagination.css @@ -1,7 +1,4 @@ .pagination { - display:-webkit-box; - display:-webkit-flex; - display:-ms-flexbox; display:flex; list-style:none; border-radius:.25rem; |