Files
vanillajs-seed/node_modules/noty/src/themes/light.scss
2020-06-08 11:51:45 +02:00

64 lines
1.1 KiB
SCSS

.noty_theme__light.noty_bar {
margin: 4px 0;
overflow: hidden;
border-radius: 2px;
position: relative;
.noty_body {
padding: 10px;
}
.noty_buttons {
border-top: 1px solid #e7e7e7;
padding: 5px 10px;
}
}
.noty_theme__light.noty_type__alert,
.noty_theme__light.noty_type__notification {
background-color: #fff;
border: 1px solid #dedede;
color: #444;
}
.noty_theme__light.noty_type__warning {
background-color: #FFEAA8;
border: 1px solid #FFC237;
color: #826200;
.noty_buttons {
border-color: #dfaa30;
}
}
.noty_theme__light.noty_type__error {
background-color: #ED7000;
border: 1px solid #e25353;
color: #FFF;
.noty_buttons {
border-color: darkred;
}
}
.noty_theme__light.noty_type__info,
.noty_theme__light.noty_type__information {
background-color: #78C5E7;
border: 1px solid #3badd6;
color: #FFF;
.noty_buttons {
border-color: #0B90C4;
}
}
.noty_theme__light.noty_type__success {
background-color: #57C880;
border: 1px solid #7cdd77;
color: darkgreen;
.noty_buttons {
border-color: #50C24E;
}
}