From f2df8944b8082b158bb161f143053f4ec4dc0844 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 11 Jul 2021 14:19:59 +0200 Subject: geolocation.js: Add missing showError function --- sass/app.scss | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'sass/app.scss') diff --git a/sass/app.scss b/sass/app.scss index 51fea67..73793ad 100644 --- a/sass/app.scss +++ b/sass/app.scss @@ -24,6 +24,51 @@ html { margin-bottom: 1em; } +.notice { + padding: 15px; + margin-bottom: 20px; + border: 1px solid #bce8f1; + border-radius: 4px; + color: #31708f; + background-color: #d9edf7; + margin-left: auto; + margin-right: auto; +} + +.warning { + padding: 15px; + margin-bottom: 20px; + border: 1px solid #faebcc; + border-radius: 4px; + color: #8a6d3b; + background-color: #fcf8e3; + margin-left: auto; + margin-right: auto; +} + +.error { + padding: 15px; + margin-bottom: 20px; + border: 1px solid #ebccd1; + border-radius: 4px; + color: #a94442; + background-color: #f2dede; + margin-left: auto; + margin-right: auto; + + strong { + margin-right: .2em; + } + + .errcode { + font-family: Monospace; + margin-top: 2em; + font-size: 100%; + color: #aaaaaa; + } + +} + ul.stops { position:relative; width:100%; -- cgit v1.2.3