From a7f20ea5cc312c96a6853ac77e81b5135f2c77b2 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 3 Nov 2015 23:11:58 +0000 Subject: [PATCH] Blocked highlighting --- src/less/style.less | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) 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 */