From 2028121a37d04dd198cc96bf5f24e5a14b883bc5 Mon Sep 17 00:00:00 2001 From: garbash Date: Wed, 1 Apr 2015 17:29:15 +0300 Subject: Slightly more stylised zoom buttons --- res/client/css/partials/zoom-buttons.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 res/client/css/partials/zoom-buttons.scss (limited to 'res/client/css/partials/zoom-buttons.scss') diff --git a/res/client/css/partials/zoom-buttons.scss b/res/client/css/partials/zoom-buttons.scss new file mode 100644 index 00000000..d938d5a3 --- /dev/null +++ b/res/client/css/partials/zoom-buttons.scss @@ -0,0 +1,27 @@ +#zoom-bar { + position: absolute; + bottom: 50px; + right: 10px; + background: white; + border-width: 1px; + border-style: solid; + border-color: grey; + padding: 5px 4px 0px 4px; + height: 40px; +} + +#btn_zoom_in { + background: url(../img/plus.svg); + background-position: center; + background-repeat: no-repeat; + width: 16px; + height: 16px; +} + +#btn_zoom_out { + background: url(../img/minus.svg); + background-position: center; + background-repeat: no-repeat; + width: 16px; + height: 25px; +} -- cgit v1.3.1