diff options
author | Simon Ogorodnik <sem-oro@yandex.ru> | 2017-03-17 17:14:39 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-17 17:14:39 +0400 |
commit | 39bfaa5f89dc07bce5456578f4e17905f2e4c095 (patch) | |
tree | 142264a786238378c201dbd3c2dba2641858853e | |
parent | b84df9a0b8dbd2184c829d345bdad151230fc375 (diff) | |
parent | 998c24edc44a7a07c22524c1647578252313d48d (diff) | |
download | dokka-39bfaa5f89dc07bce5456578f4e17905f2e4c095.tar.gz dokka-39bfaa5f89dc07bce5456578f4e17905f2e4c095.tar.bz2 dokka-39bfaa5f89dc07bce5456578f4e17905f2e4c095.zip |
Merge pull request #143 from kvnxiao/patch-1
Update style.css to better fit wide monitor resolutions
-rw-r--r-- | core/src/main/resources/dokka/styles/style.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/src/main/resources/dokka/styles/style.css b/core/src/main/resources/dokka/styles/style.css index 09586237..914be69d 100644 --- a/core/src/main/resources/dokka/styles/style.css +++ b/core/src/main/resources/dokka/styles/style.css @@ -1,10 +1,13 @@ -@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:300i,400,700); body, table { padding:50px; - font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif; + font:14px/1.5 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; color:#555; font-weight:300; + margin-left: auto; + margin-right: auto; + max-width: 1440px; } .keyword { |