24 lines
399 B
CSS
24 lines
399 B
CSS
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
background-color: #222222;
|
|
color: #ffffff;
|
|
}
|
|
.page {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: table;
|
|
}
|
|
.contents {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
#content-text {
|
|
font-weight: bold;
|
|
font-size: 5em;
|
|
} |