PTMagic/Monitor/wwwroot/assets/scss/_notification.scss

61 lines
1.2 KiB
SCSS
Raw Normal View History

2018-05-22 10:11:50 +02:00
/* =============
Notification
============= */
.notifyjs-metro-base {
position: relative;
min-height: 52px;
min-width: 250px;
color:#444;
border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-animation: dropdownOpen 0.3s ease-out;
-o-animation: dropdownOpen 0.3s ease-out;
animation: dropdownOpen 0.3s ease-out;
}
.notifyjs-metro-base .image {
display: table;
position: absolute;
height: auto;
width: auto;
left: 25px;
top: 50%;
font-size: 24px;
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.notifyjs-metro-base .text-wrapper {
display: inline-block;
vertical-align: top;
text-align: left;
margin: 10px 10px 10px 52px;
clear: both;
}
.notifyjs-metro-base .title {
font-size: 15px;
line-height: 20px;
margin-bottom: 5px;
font-weight: bold;
}
.notifyjs-metro-base .text {
font-size: 12px;
font-weight: normal;
max-width: 360px;
vertical-align: middle;
}
.notifyjs-metro-cool {
color: #fafafa !important;
background-color: #4A525F;
border: 1px solid #4A525F;
}