diff options
author | ubq323 <ubq323> | 2021-06-14 20:06:54 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-14 20:06:54 +0000 |
commit | d020dcd7e87a28d6cc06698929035850ccacb7dc (patch) | |
tree | ff6bdd0ac798baacff671c45c618a606099bef8e | |
parent | 12bcd3de36d12705ec6a4177ab50889ee099442b (diff) |
use a width defined in terms of characters instead of pixels for better readingness
-rw-r--r-- | apioforum/static/style.css | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css index cc37662..cbf878d 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -137,11 +137,9 @@ nav .links { display: flex; } margin-top: 5px; } -@media all and (min-width: 810px ) { - main { - width: 800px; - margin: auto; - } +main { + max-width: 60ch; + margin: auto; } blockquote { |