41 lines
684 B
PHP
41 lines
684 B
PHP
|
<style>
|
||
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
padding-top: 1em;
|
||
|
font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,"mastodon-font-sans-serif",sans-serif;
|
||
|
}
|
||
|
|
||
|
.toast-container {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: -moz-available;
|
||
|
display: flex;
|
||
|
padding: 1em;
|
||
|
max-width: 45em;
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
|
||
|
.toast {
|
||
|
width: 100%;
|
||
|
min-height: 2em;
|
||
|
border: 1px solid #ffffff3d;
|
||
|
border-radius: 10px;
|
||
|
box-shadow: 0px 0px 2em black;
|
||
|
color: #fff;
|
||
|
padding: 1em 1.8em;
|
||
|
display: flex;
|
||
|
}
|
||
|
.toast.info {
|
||
|
background: #0f3377;
|
||
|
}
|
||
|
.toast.error {
|
||
|
background: #9b1919;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
max-width: -moz-available;
|
||
|
}
|
||
|
</style>
|