diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-09-27 17:08:34 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-09-27 17:08:34 +0200 |
commit | bc5df83846a94fdbbfe7e1ca41489162e3a0dc47 (patch) | |
tree | 30d78df7c33723f6a8b3f2c0ba56937dd7e75cce /packages/gitbook-plugin-theme-default/less/variables.less | |
parent | f1ef1902f360e111587858f73972369b734a0237 (diff) | |
download | gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.zip gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.tar.gz gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.tar.bz2 |
Start designing toolbar
Diffstat (limited to 'packages/gitbook-plugin-theme-default/less/variables.less')
-rw-r--r-- | packages/gitbook-plugin-theme-default/less/variables.less | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/gitbook-plugin-theme-default/less/variables.less b/packages/gitbook-plugin-theme-default/less/variables.less index ff46cfc..aa1d591 100644 --- a/packages/gitbook-plugin-theme-default/less/variables.less +++ b/packages/gitbook-plugin-theme-default/less/variables.less @@ -1,3 +1,9 @@ +// Font sizes +@font-size-base: 14px; +@font-size-large: ceil(@font-size-base * 1.25); // ~18px +@font-size-small: ceil(@font-size-base * 0.85); // ~12px +@line-height-base: 1.428571429; // 20/14 +@line-height-computed: floor(@font-size-base * @line-height-base); // Sidebar @sidebar-background: rgb(250, 250, 250); @sidebar-border-color: rgba(0, 0, 0, 0.0666667); @@ -11,3 +17,7 @@ @page-width: 800px; @page-color: #333333; @page-line-height: 1.7; +// Button +@button-background: transparent; +@button-color: #ddd; +@button-hover-color: #ccc; |