Files
tabby-web/frontend/src/homepage/components/home.component.scss

62 lines
908 B
SCSS
Raw Normal View History

2021-09-16 23:40:58 +02:00
@import "~theme/vars";
2021-07-16 23:56:03 +02:00
@import "~@fontsource/fira-code/latin.css";
2021-06-27 16:28:49 +02:00
:host {
font-size: 20px;
2021-07-16 23:56:03 +02:00
font-family: 'Fira Code', monospace;
2021-09-13 09:54:00 +02:00
position: absolute;
width: 100vw;
height: 100vh;
overflow: auto;
2021-06-27 16:28:49 +02:00
}
.top-half {
2021-09-13 09:54:00 +02:00
background: linear-gradient(#0c141c00, #15202b);
2021-07-16 23:56:03 +02:00
h1 {
font-size: 80px;
}
2021-09-13 09:54:00 +02:00
.nav {
font-size: 14px;
padding: 0 35px;
}
2021-09-17 00:34:16 +02:00
.intro {
width: 60vw;
margin: auto;
}
2021-09-13 09:54:00 +02:00
}
.demo-offset {
padding-top: 24vw;
}
.bottom-half {
background: $body-bg;
overflow: hidden;
min-height: 100vh;
2021-06-27 16:28:49 +02:00
}
.navbar {
display: flex;
padding: 15px 30px;
a, button {
margin-left: 10px;
}
}
.brand {
width: 32px;
}
2021-09-13 09:54:00 +02:00
demo-terminal {
2021-06-27 16:28:49 +02:00
margin: auto;
2021-09-13 09:54:00 +02:00
width: calc(min(max(480px, 60vw), 100vw));
height: calc(max(460px, 42vw));
2021-06-27 16:28:49 +02:00
position: relative;
top: 20vw;
2021-07-16 23:56:03 +02:00
margin-top: -16vw;
2021-07-27 22:25:19 +02:00
}