14 lines
247 B
CSS
14 lines
247 B
CSS
|
|
.pageWrap {
|
||
|
|
width : 100%;
|
||
|
|
height : 100%;
|
||
|
|
text-align : center;
|
||
|
|
background-color: #ffffff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img {
|
||
|
|
width : auto;
|
||
|
|
max-height: 100%;
|
||
|
|
position : relative;
|
||
|
|
top : 50%;
|
||
|
|
transform : translateY(-50%);
|
||
|
|
}
|