photoprism/frontend/css/alerts.css

53 lines
749 B
CSS
Raw Normal View History

#alerts {
position: fixed;
z-index: 1051;
2018-08-03 13:17:13 +00:00
top: 50px;
left: 0;
right: 0;
height: auto;
display: block;
2018-08-03 13:17:13 +00:00
opacity: 0.7;
}
#alerts .success {
2018-08-03 13:17:13 +00:00
background-color: #c8e5ff;
}
#alerts .success:after {
}
#alerts .error {
2018-08-03 13:17:13 +00:00
background-color: #ffcaca;
}
#alerts .error:before {
}
#alerts .warning {
2018-08-03 13:17:13 +00:00
background-color: #ffedc1;
}
#alerts .warning:before {
}
#alerts .info {
2018-08-03 13:17:13 +00:00
background-color: #feffb8;
}
#alerts .alert {
2018-08-03 13:17:13 +00:00
color: #333;
display: block;
left: 0;
right: 0;
2018-08-03 13:17:13 +00:00
min-height: 13px;
padding: 4px 10px 4px 10px;
font-size: 13px;
font-weight: bold;
opacity: 1;
2018-08-03 13:17:13 +00:00
border-radius: 0px;
margin: 1px 0 0 0;
}
#alerts .alert:first-letter {
text-transform: uppercase;
}