55 lines
924 B
CSS
55 lines
924 B
CSS
|
:root {
|
||
|
--accent-colour: #8559a5;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: #111;
|
||
|
color: #fff;
|
||
|
font-size: 16px;
|
||
|
line-height: 25px;
|
||
|
font-family: var(--font-regular);
|
||
|
overflow-y: scroll;
|
||
|
position: static;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
pre, code {
|
||
|
font-family: var(--font-monospace);
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #1e90ff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: #6B4F80;
|
||
|
}
|
||
|
a:hover,
|
||
|
a:focus {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.redir-background {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
mask-image: linear-gradient(315deg, #000f 0, #0000 40%);
|
||
|
background: url('/images/clouds.png');
|
||
|
background-color: var(--accent-colour);
|
||
|
background-blend-mode: multiply;
|
||
|
}
|
||
|
|
||
|
.redir-foreground {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex: 1 0 auto;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
@include landing.css;
|
||
|
@include social.css;
|