3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-17 05:51:01 +01:00
dbot/public/imgurr.css
Douglas Gardner 3cdaa4b9a6 move css around
This commit moves the font-size declaration from the common box CSS to
only affecting the "loading" box.
2013-04-16 17:51:03 +00:00

42 lines
601 B
CSS

#container {
text-align:center;
}
#container,#image {
margin:0;
max-height:100%;
padding:0;
}
#loading, #details{
background:rgba(43,43,43,0.8);
color:#85bf25;
font-family:sans-serif;
font-weight:700;
padding:20px;
position:absolute;
top:50px;
}
#details {
right:0;
text-align:right;
border-bottom-left-radius:5px;
border-top-left-radius:5px
display:none;
}
#loading {
left:0;
font-size:12px;
border-bottom-right-radius:5px;
border-top-right-radius:5px;
}
html,body {
background-color:#121211;
height:100%;
margin:0;
padding:0;
}