photoprism/frontend/css/alerts.css

54 lines
774 B
CSS
Raw Normal View History

#alerts {
position: fixed;
z-index: 1051;
2018-08-07 18:17:14 +00:00
bottom: 0;
2018-08-03 13:17:13 +00:00
left: 0;
right: 0;
height: auto;
display: block;
2018-08-07 18:17:14 +00:00
opacity: 0.8;
}
#alerts .success {
2018-08-07 18:17:14 +00:00
background-color: #000000;
}
#alerts .success:after {
}
#alerts .error {
2018-08-07 18:17:14 +00:00
background-color: #cc3300;
}
#alerts .error:before {
}
#alerts .warning {
2018-08-09 21:10:05 +00:00
background-color: #a89a00;
}
#alerts .warning:before {
}
#alerts .info {
2018-08-07 18:17:14 +00:00
background-color: #000000;
}
#alerts .alert {
2018-08-07 18:17:14 +00:00
color: white;
display: block;
2018-08-07 18:17:14 +00:00
text-align: center;
left: 0;
right: 0;
2018-08-03 13:17:13 +00:00
min-height: 13px;
padding: 4px 10px 4px 10px;
font-size: 13px;
2018-08-07 18:17:14 +00:00
font-weight: normal;
opacity: 1;
2018-08-07 18:17:14 +00:00
border-radius: 0;
margin: 1px 0 0 0;
}
#alerts .alert:first-letter {
text-transform: uppercase;
}