42 lines
763 B
CSS
42 lines
763 B
CSS
.redir-landing {
|
|
display: flex;
|
|
flex: 1 0 auto;
|
|
padding: 10px;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.redir-landing-content {
|
|
max-width: 500px;
|
|
width: 100%;
|
|
background: #191919;
|
|
box-shadow: 0 1px 2px #0009;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.redir-landing-body {
|
|
text-align: center;
|
|
}
|
|
.redir-landing-body p {
|
|
margin: .5em;
|
|
}
|
|
|
|
.redir-landing-footer {
|
|
font-size: .8em;
|
|
line-height: 1.4em;
|
|
text-align: center;
|
|
margin: 10px;
|
|
}
|
|
|
|
.redir-landing-logo {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
background-color: #fff;
|
|
mask: url('/images/flashii.svg') no-repeat center;
|
|
width: 140px;
|
|
height: 140px;
|
|
margin: 10px;
|
|
font-size: 0;
|
|
}
|