diff options
author | Noah Loomans <noahloomans@gmail.com> | 2017-06-21 11:05:32 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2017-06-21 11:05:32 +0200 |
commit | 1fe16cf17b0333eac2f849dbbed8452ec2fdf4fc (patch) | |
tree | f6fbabd5e13ccf9b739873c636960c8733c80504 /public/stylesheets | |
parent | 9a6983d2977dd20944626f9c23f9e02d80b1ca85 (diff) | |
parent | 7648e2a4d5d16be21675324c2cb30f77fbfa4ab3 (diff) |
Merge branch 'master' into beta
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/style.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index b3fb6d8..830b007 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -368,3 +368,25 @@ body.week-selector-not-visible #week-selector { .print { display: none; } + +#notification { + max-width: 600px; + padding: 10px; + margin: 0 auto; +} + +#notification .box { + display: flex; + background-color: #e0e0e0; + padding: 8px; + border-radius: 2px; + align-items: center; +} + +#notification .text { + padding-left: 8px; +} + +.grow { + flex-grow: 1; +} |