mirror of
https://github.com/reality/dbot.git
synced 2025-01-13 21:52:41 +01:00
6a416f4087
* Sorted and formatted CSS * Pushed "Loading..." callout to left * Gave callout a curved edge * Coloured the background black * Coloured the callout text green * Coloured the callout background grey * Changed callout font to sans-serif * Increased callout padding
31 lines
435 B
CSS
31 lines
435 B
CSS
#container {
|
|
text-align:center;
|
|
}
|
|
|
|
#container,#image {
|
|
margin:0;
|
|
max-height:100%;
|
|
padding:0;
|
|
}
|
|
|
|
#loading {
|
|
background:rgba(43,43,43,0.8);
|
|
border-bottom-right-radius:5px;
|
|
border-top-right-radius:5px;
|
|
color:#85bf25;
|
|
display:none;
|
|
font-family:sans-serif;
|
|
font-weight:700;
|
|
left:0;
|
|
padding:20px;
|
|
position:absolute;
|
|
top:50px;
|
|
}
|
|
|
|
html,body {
|
|
background-color:#121211;
|
|
height:100%;
|
|
margin:0;
|
|
padding:0;
|
|
}
|