diff options
author | Arun Isaac | 2022-07-24 01:06:29 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-24 01:07:39 +0530 |
commit | 8e02f1b133afe9412a9527925fd3bb06f9930baf (patch) | |
tree | f63703ed10f7c73312ed318b5ed8001494436734 | |
parent | be5690593bc7046d84a15587c343d4a3d495b985 (diff) | |
download | tissue-8e02f1b133afe9412a9527925fd3bb06f9930baf.tar.gz tissue-8e02f1b133afe9412a9527925fd3bb06f9930baf.tar.lz tissue-8e02f1b133afe9412a9527925fd3bb06f9930baf.zip |
web: server: Use small caps for document type identifiers.
* tissue/web/server.scm (%css)[.document-type]: Remove text-transform
property. Set font-variant property.
-rw-r--r-- | tissue/web/server.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tissue/web/server.scm b/tissue/web/server.scm index a3b713e..fa26aa5 100644 --- a/tissue/web/server.scm +++ b/tissue/web/server.scm @@ -76,8 +76,8 @@ form { text-align: center; } } .search-result a { text-decoration: none; } .document-type { + font-variant: small-caps; font-weight: bold; - text-transform: uppercase; } .search-result-metadata { color: dimgray; |