From a3515e16eee89ada9fd7eb62f2bc02842eefdb90 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Wed, 17 Oct 2012 16:40:15 -0400 Subject: [PATCH] Prevent text selection, tweak styles --- css/app.css | 25 +++++++++++++++++++++++-- index.html | 6 ------ 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/css/app.css b/css/app.css index 0a1560baf..d1f814e26 100644 --- a/css/app.css +++ b/css/app.css @@ -1,4 +1,17 @@ -/* Additional CSS rules will go here */ +body { + font:normal 13px/20px Helvetica, Arial, sans-serif; + background:#e4e4e4; +} +:focus { + outline-color: transparent; + outline-style: none; +} +p { + font-size: x-small; +} +a:visited, a { + color: black; +} * { -moz-box-sizing: border-box; @@ -6,7 +19,14 @@ box-sizing: border-box; } -.currentMode { font-weight: bold; } +text { + -webkit-user-select: none; + -moz-user-select: none; +} + +.currentMode { + font-weight: bold; +} /* Zoom controls */ #zoombuttons { @@ -16,6 +36,7 @@ } #zoombuttons button { + cursor:pointer; width:30px; height:30px; text-align:center; diff --git a/index.html b/index.html index a6e330cad..6f4b59816 100755 --- a/index.html +++ b/index.html @@ -9,12 +9,6 @@ -