50 lines
773 B
HTML
50 lines
773 B
HTML
<style>
|
|
|
|
/* Common app styling */
|
|
|
|
.padding {
|
|
padding: 15px;
|
|
}
|
|
|
|
|
|
|
|
.notification {
|
|
position: absolute;
|
|
width: 100%;
|
|
min-height: 100px;
|
|
right: 0;
|
|
z-index: 100;
|
|
bottom: 0;
|
|
display: none;
|
|
background-color:#D32F2F;
|
|
|
|
}
|
|
|
|
.notification-header {
|
|
background-color: #F44336;
|
|
font-weight: bold;
|
|
min-height: 26px;
|
|
color: #ffffff;
|
|
vertical-align:middle;
|
|
}
|
|
|
|
.notification-message {
|
|
background-color: #D32F2F;
|
|
color: #ffffff;
|
|
margin:4px;
|
|
}
|
|
|
|
|
|
.notification-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 2px;
|
|
cursor: pointer;
|
|
background-image: url("https://googledrive.com/host/0B92ExLh4POiZfkZsSDMwaHZUV3hneWdEbVV5aWVqenpWNjYtc29oYUZyYzVKVE50eFBMQm8/close-white.svg");
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
</style>
|