30 lines
415 B
CSS
30 lines
415 B
CSS
body{
|
|
margin: 0px;
|
|
background: #0e0e0e;
|
|
}
|
|
img{
|
|
-webkit-user-select: none;
|
|
margin: auto;
|
|
display: block;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
h3{
|
|
display: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
color: #666;
|
|
}
|
|
.wrap_block{
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
position: absolute;
|
|
} |