forked from Botanical/BotanJS
64 lines
982 B
CSS
64 lines
982 B
CSS
body {
|
|
background-color: #222;
|
|
background-image: radial-gradient(
|
|
circle 150px at -75% -75%
|
|
, transparent 0%
|
|
, transparent 94%
|
|
, rgba(255, 255, 255, 0.6) 94%
|
|
, rgba(255, 255, 255, 0.6) 99%
|
|
, transparent
|
|
)
|
|
, radial-gradient(
|
|
circle 150px at 173% 174%
|
|
, transparent 0%
|
|
, transparent 94%
|
|
, rgba(255, 255, 255, 0.6) 94%
|
|
, rgba(255, 255, 255, 0.6) 99%
|
|
, transparent
|
|
)
|
|
;
|
|
|
|
background-size: 100px 100px;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
}
|
|
|
|
form {
|
|
overflow: hidden;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.mbox_titlebar, .mbox_body {
|
|
background: rgba(0, 0, 0, 0.1) !important;
|
|
}
|
|
|
|
.cstatus {
|
|
position: relative;
|
|
}
|
|
|
|
.status {
|
|
position: absolute;
|
|
|
|
right: 0.25em;
|
|
top: 0.25em;
|
|
|
|
width: 0.5em;
|
|
height: 0.5em;
|
|
|
|
background: grey;
|
|
box-shadow: 0 0 5px 0;
|
|
}
|
|
|
|
div.msg { text-align: right; }
|
|
sub.good { color: greenyellow; }
|
|
sub.failed { color: #DDD; }
|
|
sub.suspicious { color: orangered; }
|
|
sub.banned { color: red; }
|