diff options
author | Franck Cuny <franck@fcuny.net> | 2024-07-03 16:32:51 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-07-03 16:32:51 -0700 |
commit | d481251d4148a9e90cf71aa1c11a8f8e077336a4 (patch) | |
tree | a5dd8993718db7cfc7b13ef2a24a3fa2e15b582f /static/css | |
parent | simplify the layout (diff) | |
download | fcuny.net-d481251d4148a9e90cf71aa1c11a8f8e077336a4.tar.gz |
some more cleanup
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/custom.css | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/static/css/custom.css b/static/css/custom.css index 714f08c..46e75b9 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1,19 +1,19 @@ html { - font-size: 20px; + font-size: 20px; } @font-face { - font-family: 'Gentium'; - font-style: normal; - font-weight: 400; - src: url(/fonts/gentium-basic-v11-latin-ext_latin-regular.woff) format('woff'); + font-family: "Gentium"; + font-style: normal; + font-weight: 400; + src: url(/fonts/gentium-basic-v11-latin-ext_latin-regular.woff) format("woff"); } @font-face { - font-family: 'Argon'; - font-style: normal; - font-weight: 400; - src: url(/fonts/MonaspaceArgon-Light.woff) format('woff'); + font-family: "Argon"; + font-style: normal; + font-weight: 400; + src: url(/fonts/MonaspaceArgon-Light.woff) format("woff"); } body { @@ -34,7 +34,7 @@ h2 { } a { - color: #473A2F; + color: #473a2f; } a:link, @@ -52,7 +52,7 @@ code { margin: 0; overflow-x: auto; word-wrap: normal; - font-size: 0.8rem; + font-size: 0.8rem; } p code { @@ -93,7 +93,7 @@ td { padding-right: 0.7em; padding-top: 0.4em; padding-bottom: 0.4em; - padding-left: : 0.7em; + padding-left: 0.7em; } thead { @@ -102,8 +102,10 @@ thead { text-align: left; } -table, th, td { - font-size: 0.8em; +table, +th, +td { + font-size: 0.8em; border-collapse: collapse; color: #000; border: 1px solid #cdcdcd; @@ -114,11 +116,11 @@ blockquote { font-style: italic; margin: 0 0 1.5em; padding-left: 1em; - border-left: .2em solid #bdbdbd + border-left: 0.2em solid #bdbdbd; } ul { - list-style-type: disc; + list-style-type: disc; } ul.list-content { @@ -128,5 +130,5 @@ ul.list-content { } article { - text-align: justify; + text-align: justify; } |