accounts-frontend/src/components/ui/bsod/styles.scss

57 lines
814 B
SCSS
Raw Normal View History

@import '~components/ui/colors.scss';
$font-family-monospaced: 'Consolas', monospace;
.body {
height: 100%;
background-color: $dark_blue;
color: #fff;
text-align: center;
font-family: $font-family-monospaced;
box-sizing: border-box;
}
.canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wrapper {
position: relative;
margin: 85px auto 0;
max-width: 500px;
padding: 0 20px;
}
.title {
font-size: 26px;
margin-bottom: 13px;
}
.line {
margin: 0 auto;
font-size: 16px;
color: #EBE8E1;
}
.lineWithMargin {
composes: line;
margin-bottom: 20px;
}
.support {
font-size: 18px;
color: #FFF;
margin: 3px 0 44px;
display: block;
}
.easterEgg {
font-size: 14px;
color: #EBE8E1;
}