First pass at landing page
This commit is contained in:
parent
e270017c86
commit
6ace97fe1c
22 changed files with 2886 additions and 0 deletions
141
src/lib/styles/style.css
Normal file
141
src/lib/styles/style.css
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: 'VT323', monospace;
|
||||
}
|
||||
|
||||
.display-heading {
|
||||
font-family: 'VT323', monospace;
|
||||
font-size: 72px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 16px 40px;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
color: #222;
|
||||
font-family: 'VT323', monospace;
|
||||
font-size: 40px;
|
||||
line-height: 1;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.site-logo:hover {
|
||||
color: #1eaedb;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.site-nav {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.site-nav a {
|
||||
color: #222;
|
||||
font-family: 'VT323', monospace;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.site-nav a:hover {
|
||||
color: #1eaedb;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.site-nav .login-link {
|
||||
background: transparent;
|
||||
border: 1px solid #222;
|
||||
color: #222;
|
||||
padding: 4px 14px;
|
||||
}
|
||||
|
||||
.site-nav .login-link:hover {
|
||||
background: transparent;
|
||||
border-color: #1eaedb;
|
||||
color: #1eaedb;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding-top: 80px;
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
li::before {
|
||||
content: '- ';
|
||||
}
|
||||
|
||||
.hero-list {
|
||||
font-family: 'VT323', monospace;
|
||||
font-size: 30px;
|
||||
letter-spacing: -0.8px;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.hero-list li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.site-header {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
padding: 16px 20px;
|
||||
}
|
||||
|
||||
.site-nav {
|
||||
flex-wrap: wrap;
|
||||
gap: 12px 18px;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1280px;
|
||||
}
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
.ascii-art-column {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.ascii-art {
|
||||
display: inline-block;
|
||||
font-family: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
font-size: 8px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 18px;
|
||||
font-family: 'VT323', monospace;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue