Django-Learn/djlearn/pages/static/css/landing.css

120 lines
1.8 KiB
CSS

body {
font-family: monospace;
margin: 0;
overflow-x: hidden;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
::-webkit-scrollbar {
display: none;
}
.landing-bg {
background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed;
background-size: cover;
}
.landing-main-text {
text-align: center;
}
.landing-section {
min-height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.landing-section-content {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #ccc;
}
.landing-section-content-inner {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #ccc;
}
/*
.landing-features {
background: ;
}
.landing-feature {
}
*/
.shade {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.5);
}
footer {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 0.75rem;
position: absolute;
bottom: 0;
}
footer p {
margin: 0.5em;
}
.brand {
margin: 0;
color: #c55e00;
font-size: 3em;
}
.brand-text {
color: gold;
}
.header {
width: 100vw;
display: flex;
flex-direction: row;
position: absolute;
}
.header-link {
margin: 1rem;
border-bottom: 3px solid #c55e00;
font-size: 1rem;
color: #222;
text-decoration: none;
color: #ccc;
}
.header-text {
margin: 1rem 1rem 1rem auto;
font-size: 1rem;
color: #ccc;
}
#logo {
width: 50px;
height: 50px;
}