mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-10 12:36:49 +00:00
* readme * specify landing must show app name * clean default project * write landing page layout * add static assets for styling * add Landing page unit test install fontawesome
76 lines
939 B
SCSS
76 lines
939 B
SCSS
@media (max-width: 700px) {
|
|
.hide-sm {
|
|
display: none;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 8rem;
|
|
}
|
|
|
|
// Text Styles
|
|
.x-large {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.large {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
// Navbar
|
|
.navbar {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
|
|
ul {
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.dash-buttons a {
|
|
display: block;
|
|
width: 100%;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
// Profiles
|
|
.profile {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
|
|
ul {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.profile-grid {
|
|
grid-template-areas:
|
|
"top"
|
|
"about"
|
|
"exp"
|
|
"edu"
|
|
"github";
|
|
}
|
|
|
|
.profile-about {
|
|
.skills {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.post {
|
|
grid-template-columns: 1fr;
|
|
a,
|
|
button {
|
|
padding: 0.3rem 0.4rem;
|
|
}
|
|
}
|
|
}
|