devbook_ts/src/static/scss/_mobile.scss
Ruidy ef6d97f2fc
Create and style Landing page (#2)
* 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
2020-05-12 11:09:51 +02:00

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;
}
}
}