Files
mixtape/zero.Backoffice.UI/app/styles/Setup/_canvas.scss
T

64 lines
862 B
SCSS
Raw Normal View History

2020-03-26 22:14:16 +01:00
body, html
{
width: 100%;
margin: 0;
padding: 0;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html
{
height: 100%;
2020-03-27 01:17:22 +01:00
-webkit-text-size-adjust: 100%;
2020-03-26 22:14:16 +01:00
}
body
{
min-height: 100%;
2020-08-16 15:51:12 +02:00
background: var(--color-primary);
2020-03-26 22:14:16 +01:00
color: var(--color-text);
overflow-x: hidden;
overflow-y: scroll;
2021-08-25 10:12:48 +02:00
font-family: var(--font);
2020-03-26 22:14:16 +01:00
display: flex;
justify-content: center;
align-items: center;
}
.clear
{
display: block;
clear: both;
float: none;
}
.app
{
2020-04-03 16:45:47 +02:00
height: 100%;
}
.app-headline
{
text-align: center;
color: white;
font-size: 64px;
font-weight: 400;
margin: -10vh 0 8vh;
2020-03-26 22:14:16 +01:00
}
body:before
{
content: 'setup';
2020-12-30 13:21:35 +01:00
//@extend %font-headline;
2020-04-03 14:27:39 +02:00
color: rgba(black, 0.05);
2020-03-26 22:14:16 +01:00
position: fixed;
left: -10vw;
bottom: -30vh;
font-size: 150vh;
line-height: 150vh;
font-weight: bold;
}