1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-06 09:17:58 +00:00
now-playing/assets/scss/3-components/_notifications.scss

43 lines
786 B
SCSS
Raw Normal View History

2019-11-27 17:06:26 +00:00
/**
* Notification module
* Namespace : .notif
*/
/* ----------------------------------------------------------- */
/* == configuration */
/* ----------------------------------------------------------- */
$notif-success: #00d1b2;
$notif-warning: #ffdd57;
$notif-error: #ff3860;
$notif-info: $color-info;
/* ----------------------------------------------------------- */
/* == module */
/* ----------------------------------------------------------- */
.notif {
padding: 1em;
border-radius: 4px;
}
.notif--success {
background-color: $notif-success;
color: #fff;
}
.notif--warning {
background-color: $notif-warning;
color: #000;
}
.notif--error {
background-color: $notif-error;
color: #fff;
}
.notif--info {
background-color: $notif-info;
color: #fff;
}