70 lines
999 B
CSS
70 lines
999 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #111;
|
|
color: #fff;
|
|
font: 12px/20px Verdana, Geneva, Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.uiharu {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.uiharu a {
|
|
color: #437574;
|
|
text-decoration: none;
|
|
}
|
|
.uiharu a:hover,
|
|
.uiharu a:focus {
|
|
text-decoration: underline;
|
|
}
|
|
.uiharu a:active {
|
|
color: #2e5150;
|
|
}
|
|
|
|
.uiharu-inner {
|
|
margin: auto;
|
|
}
|
|
|
|
.uiharu-header {
|
|
margin: 20px 0;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.uiharu-logo {
|
|
text-align: center;
|
|
}
|
|
.uiharu-logo img {
|
|
max-width: 500px;
|
|
width: 100%;
|
|
}
|
|
.uiharu-description {
|
|
text-align: center;
|
|
}
|
|
|
|
.uiharu-footer {
|
|
font-size: .8em;
|
|
opacity: .6;
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
padding: 0 20px;
|
|
}
|
|
.uiharu-footer a {
|
|
color: inherit;
|
|
}
|