3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00

Give random image page an imgur colour scheme

* 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
This commit is contained in:
Douglas Gardner 2013-04-15 05:17:55 +00:00
parent 8f3131a7eb
commit 6a416f4087

View File

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