This commit is contained in:
Eugene Pankov
2021-09-15 20:54:44 +02:00
parent 5fccca2f00
commit 533749092a
16 changed files with 98 additions and 63 deletions

View File

@@ -0,0 +1,56 @@
@import "../../theme/vars.scss";
@import "~@fontsource/fira-code/latin.css";
:host {
font-size: 20px;
font-family: 'Fira Code', monospace;
position: absolute;
width: 100vw;
height: 100vh;
overflow: auto;
}
.top-half {
background: linear-gradient(#0c141c00, #15202b);
h1 {
font-size: 80px;
}
.nav {
font-size: 14px;
padding: 0 35px;
}
}
.demo-offset {
padding-top: 24vw;
}
.bottom-half {
background: $body-bg;
overflow: hidden;
min-height: 100vh;
}
.navbar {
display: flex;
padding: 15px 30px;
a, button {
margin-left: 10px;
}
}
.brand {
width: 32px;
}
demo-terminal {
margin: auto;
width: calc(min(max(480px, 60vw), 100vw));
height: calc(max(460px, 42vw));
position: relative;
top: 20vw;
margin-top: -16vw;
}