diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-02-04 20:53:35 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-02-05 15:25:58 +0100 |
commit | e0aa81c1df99db3039775c3aa2dbad5e685b64be (patch) | |
tree | caab949bc5ec887512d37136e915fa3505835ad1 /server/sonar-web/src/main/less/variables.less | |
parent | abfd622fa5dc29501056b20a5e20cf9281052aa7 (diff) | |
download | sonarqube-e0aa81c1df99db3039775c3aa2dbad5e685b64be.tar.gz sonarqube-e0aa81c1df99db3039775c3aa2dbad5e685b64be.zip |
rework css
Diffstat (limited to 'server/sonar-web/src/main/less/variables.less')
-rw-r--r-- | server/sonar-web/src/main/less/variables.less | 40 |
1 files changed, 34 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/less/variables.less b/server/sonar-web/src/main/less/variables.less index f8eb0ee0561..0857574ca68 100644 --- a/server/sonar-web/src/main/less/variables.less +++ b/server/sonar-web/src/main/less/variables.less @@ -1,18 +1,37 @@ /* - * Fonts + * Base */ -@smallFontSize: 12px; +@baseBackgroundColor: #fff; +@baseFontColor: #444; +@baseFontColorLight: #595959; +@baseFontFamily: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; @baseFontSize: 13px; +@baseLineHeight: unit(16px / @baseFontSize); + + +/* + * Code + */ + +@monoFontFamily: Consolas, "Liberation Mono", Menlo, Courier, monospace; +@monoFontSize: 12px; +@monoLineHeight: 18px; + + +/* + * Font Sizes + */ + +@smallFontSize: 12px; @mediumFontSize: 14px; @bigFontSize: 16px; -@baseFontColor: #444; -@baseLightFontColor: #595959; + + + @secondFontColor: #777; @headerFontSize: 16px; -@monoFontFamily: Consolas, "Liberation Mono", Menlo, Courier, monospace; - /* @@ -100,3 +119,12 @@ */ @defaultTransitionOptions: .2s ease; + + + + +/* + * Page + */ + +@pageFooterHeight: 60px; |