70 lines
848 B
CSS
70 lines
848 B
CSS
body
|
|
{
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Sans, Tahoma;
|
|
}
|
|
#box
|
|
{
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 25em;
|
|
padding: 1em;
|
|
margin-top: -8em;
|
|
margin-left: -13.5em;
|
|
}
|
|
img
|
|
{
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
h2
|
|
{
|
|
text-align: center;
|
|
font-weight: normal;
|
|
margin-top: .5em;
|
|
color: #555;
|
|
}
|
|
a
|
|
{
|
|
text-decoration: none;
|
|
color: #666;
|
|
}
|
|
#download
|
|
{
|
|
display: block;
|
|
margin: 0 auto;
|
|
width: 8em;
|
|
padding: 1em;
|
|
background-color: #AD4;
|
|
color: #250;
|
|
border-radius: .2em;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
}
|
|
#download:hover
|
|
{
|
|
background-color: #9C3;
|
|
}
|
|
#source
|
|
{
|
|
display: block;
|
|
text-align: center;
|
|
margin: .6em auto;
|
|
font-size: .9em;
|
|
width: 10em;
|
|
}
|
|
#cc
|
|
{
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 1em;
|
|
width: 100%;
|
|
font-size: .9em;
|
|
color: #666;
|
|
}
|