aboutsummaryrefslogtreecommitdiff
path: root/static/style.scss
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-17 16:41:58 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-17 16:41:58 +0200
commit79b9876aa8f3611264be4d665b51051b17c3c8b7 (patch)
tree251c0f5d0e0565a3d7a32f03647b2cf22991912f /static/style.scss
parentCan add events spanning midnight. (diff)
downloadcalp-79b9876aa8f3611264be4d665b51051b17c3c8b7.tar.gz
calp-79b9876aa8f3611264be4d665b51051b17c3c8b7.tar.xz
Selected event now glows.
Diffstat (limited to 'static/style.scss')
-rw-r--r--static/style.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/static/style.scss b/static/style.scss
index c1e99479..83b86c59 100644
--- a/static/style.scss
+++ b/static/style.scss
@@ -31,6 +31,15 @@ html, body {
*/
display: flex;
flex-direction: column;
+
+ .event:target {
+ box-shadow:
+ 1em 1em 0.5em gold,
+ -1em -1em 0.5em gold,
+ 1em -1em 0.5em gold,
+ -1em 1em 0.5em gold;
+ z-index: 1;
+ }
}