New app 'pages' create index page and static dirs
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
body {
|
||||
font-family: monospace;
|
||||
margin: 0;
|
||||
overflow-x: hidden;
|
||||
color: white;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.landing-main {
|
||||
background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.landing-section {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.landing-section-content {
|
||||
padding: 2rem 0 2rem 0;
|
||||
background: rgba(0,0,0,0.5);
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.brand {
|
||||
margin: 0;
|
||||
color: #c55e00;
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.brand-text {
|
||||
color: gold;
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
|
||||
background: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.header-link {
|
||||
margin: 1rem;
|
||||
border-bottom: 3px solid #c55e00;
|
||||
font-size: 1.2rem;
|
||||
color: #222;
|
||||
text-decoration: none;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.header-text {
|
||||
margin: 1rem 1rem 1rem auto;
|
||||
font-size: 1.2rem;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.header-text-small {
|
||||
margin: 1rem;
|
||||
font-size: 0.75rem;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
#logo {
|
||||
padding: 3px 0 0 0;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
Reference in New Issue
Block a user