forked from GitHub/dbot
cd6678f12b
The proportional font on a centred piece of text with a predictable number of letters annoyed me a bit.
55 lines
765 B
CSS
55 lines
765 B
CSS
#container {
|
|
text-align:center;
|
|
}
|
|
|
|
#container,#image {
|
|
margin:0;
|
|
max-height:100%;
|
|
padding:0;
|
|
}
|
|
|
|
#details {
|
|
display:none;
|
|
font-weight:700;
|
|
left:25px;
|
|
min-width:280px;
|
|
padding:20px;
|
|
text-align:center;
|
|
top:25px;
|
|
}
|
|
|
|
#link {
|
|
left:25px;
|
|
text-align:center;
|
|
width:168px;
|
|
font-family:monospace
|
|
}
|
|
|
|
#link,#loading {
|
|
font-family:monospace;
|
|
font-size:10px;
|
|
padding:10px;
|
|
top:95px;
|
|
}
|
|
|
|
#loading {
|
|
font-weight:500;
|
|
left:220px;
|
|
min-width:95px;
|
|
}
|
|
|
|
#loading,#details,#link {
|
|
background:rgba(43,43,43,0.8);
|
|
border-radius:5px;
|
|
color:#85bf25;
|
|
font-family:sans-serif;
|
|
position:absolute;
|
|
}
|
|
|
|
html,body {
|
|
background-color:#121211;
|
|
height:100%;
|
|
margin:0;
|
|
padding:0;
|
|
}
|