blob: 606c96285c30387c3b95f36bd9cd42f47e4efff5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
body {
color: #ddd;
background: url("../wall.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#middle{
border-radius: 24px;
float: left;
display: inline-block;
width: 161.803px;
height: 100px;
position: absolute;
top: 50%;
bottom: 50%;
left: 0;
right: 0;
margin: auto;
text-align: center;
background-color: rgba(20, 20, 20, 0.9);
}
|