mirror of
https://shylinux.com/x/volcanos
synced 2025-04-25 08:48:06 +08:00
42 lines
818 B
CSS
42 lines
818 B
CSS
fieldset.Toast {
|
|
border:solid 2px red;
|
|
/* background-color:rgba(100,100,100,0.8); */
|
|
position:absolute;
|
|
display:none;
|
|
z-index:200;
|
|
}
|
|
fieldset.Toast>div.action {
|
|
padding:0 0px;
|
|
}
|
|
fieldset.Toast>div.output {
|
|
padding:0 10px;
|
|
text-align:center;
|
|
}
|
|
fieldset.Toast>div.output>div.title {
|
|
font-size:12px;
|
|
text-align:center;
|
|
/* color:gray; */
|
|
}
|
|
fieldset.Toast>div.output>div.content {
|
|
word-break:break-word;
|
|
white-space:pre-wrap;
|
|
text-align:center;
|
|
margin:0px;
|
|
padding:2px;
|
|
font-size:16px;
|
|
}
|
|
fieldset.Toast>div.output table {
|
|
/* color:yellow */
|
|
}
|
|
fieldset.Toast>div.output table th {
|
|
/* background:red; */
|
|
}
|
|
fieldset.Toast>div.output table td {
|
|
white-space:pre;
|
|
}
|
|
fieldset.Toast>div.output>div.tick {
|
|
font-size:12px;
|
|
/* color:gray; */
|
|
}
|
|
|