diff --git a/src/less/style.less b/src/less/style.less index cdfa4d6..eb12688 100644 --- a/src/less/style.less +++ b/src/less/style.less @@ -1,14 +1,24 @@ @import 'node_modules/bootstrap/less/bootstrap.less'; @import 'node_modules/bootstrap/less/theme.less'; @import 'node_modules/ionicons/less/ionicons.less'; +@import (inline) url('https://fonts.googleapis.com/css?family=Roboto:300,400,500'); + +html { + font-family: 'Roboto', sans-serif; + font-weight: 300; + text-align: center; +} body { padding: 5px; padding-top: 50px; } - -#navbar { - a { - - } -} \ No newline at end of file +/* @group Electron Specific */ +:not(input):not(textarea), +:not(input):not(textarea)::before, +:not(input):not(textarea)::after { + -webkit-user-select: none; + user-select: none; + cursor: default; +} +/* @end Electron Specific */