From 73e59fe07f8b5f72bfc5445c63a9b2d3809c8e30 Mon Sep 17 00:00:00 2001 From: DaveDubUK Date: Wed, 24 Jun 2015 19:25:25 +0700 Subject: [PATCH] code review changes for walk.js 1.25 --- examples/html/walkStyle.css | 48 +++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 examples/html/walkStyle.css diff --git a/examples/html/walkStyle.css b/examples/html/walkStyle.css new file mode 100644 index 0000000000..26fb085393 --- /dev/null +++ b/examples/html/walkStyle.css @@ -0,0 +1,48 @@ +* { +} + +body { + margin: 0; + padding: 0; + + background-color: rgb(76, 76, 76); + color: rgb(204, 204, 204); + font-family: Arial; + font-size: 9pt; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +#walk-settings-header { + padding: 0.5em; +} + +.settings-section { + display: block; + margin: 10 10; + height: 22.5pt; +} + +.settings-section label { + font-weight: bold; +} + +.settings-section span { + float: right; +} + +input[type=button] { + cursor: pointer; + background-color: #608e96; + border-color: #608e96; + border-radius: 3.75pt; + padding: 3.75pt 7.5pt; + border: 0; + color: #fff; + font-weight: bold; +} \ No newline at end of file