mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
27 lines
501 B
CSS
27 lines
501 B
CSS
.alert {
|
|
background: var(--bg-color);
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
}
|
|
.alert ol, .alert ul {
|
|
margin: 5px 0;
|
|
padding: 0 20px;
|
|
}
|
|
.alert.success{
|
|
background: var(--success);
|
|
}
|
|
.alert.error{
|
|
background: var(--error);
|
|
color: var(--bg-color);
|
|
}
|
|
.alert img{
|
|
max-width: 100%;
|
|
border-radius: 5px;
|
|
border: 10px solid white;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
}
|