diff options
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; |