diff options
Diffstat (limited to 'sonar-server/src/main/less/ui.less')
-rw-r--r-- | sonar-server/src/main/less/ui.less | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/sonar-server/src/main/less/ui.less b/sonar-server/src/main/less/ui.less index 98c5718a841..b4e9b7df9af 100644 --- a/sonar-server/src/main/less/ui.less +++ b/sonar-server/src/main/less/ui.less @@ -1,12 +1,44 @@ @import "variables"; @import "mixins"; +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 300; + src: url('../fonts/roboto-light.woff') format('woff'); +} +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url('../fonts/roboto-normal.woff') format('woff'); +} +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url('../fonts/roboto-medium.woff') format('woff'); +} +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url('../fonts/roboto-bold.woff') format('woff'); +} + body { - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; } /* + * Common + */ + +.nowrap { white-space: nowrap; } + + +/* * Links */ |