1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/sass/ascribe_global_notification.scss

60 lines
1.1 KiB
SCSS
Raw Normal View History

2015-06-08 18:14:25 +02:00
.ascribe-global-notification {
background-color: #212121;
2015-07-08 17:06:53 +02:00
color: white;
2015-08-31 19:04:44 +02:00
display: table;
height: 3.5em;
left: 0;
position: fixed;
transition: .2s bottom cubic-bezier(.77, 0, .175, 1);
2015-06-08 18:14:25 +02:00
width: 100%;
}
.ascribe-global-notification-off {
bottom: -3.5em;
}
.ascribe-global-notification-on {
bottom: 0;
}
2015-08-31 19:04:44 +02:00
.ascribe-global-notification > div,
.ascribe-global-notification-bubble > div {
display: table-cell;
2015-06-08 18:14:25 +02:00
font-size: 1.25em;
padding-right: 3em;
2015-08-31 19:04:44 +02:00
text-align: right;
vertical-align: middle;
2015-07-08 15:40:32 +02:00
}
2015-07-08 17:06:53 +02:00
.ascribe-global-notification-bubble {
background-color: #212121;
border-radius: 2px;
2015-08-31 19:04:44 +02:00
bottom: 3em;
2015-07-08 17:06:53 +02:00
color: white;
2015-08-31 19:04:44 +02:00
display: table;
height: 3.5em;
position: fixed;
right: -50em;
2015-07-08 17:06:53 +02:00
transition: 1s right ease;
2015-08-31 19:04:44 +02:00
> div {
padding: .75em 1.5em;
}
2015-07-08 15:40:32 +02:00
}
2015-07-08 17:06:53 +02:00
.ascribe-global-notification-bubble-off {
2015-07-10 13:54:25 +02:00
right: -100em;
2015-07-08 17:06:53 +02:00
}
.ascribe-global-notification-bubble-on {
right: 3.5em;
2015-07-08 15:40:32 +02:00
}
2015-07-08 17:06:53 +02:00
.ascribe-global-notification-danger {
background-color: #d9534f;
}
.ascribe-global-notification-success {
background-color: rgba(2, 182, 163, 1);
2015-08-31 19:04:44 +02:00
}