diff options
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 fd2bfb8..c2c7e8f 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -381,3 +381,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; +} |