bdcad38310
* Finishing up site * Make site a bit responsive * Fix menu responsiveness * Remove Fira Sans and revamp a bit text * Update list of syntax and change output of syntax * Add Rust mention * Some doc tweaks * Correct capitalization for GitHub Correct capitalization for GitHub * Some CSS tweaks * More css tweaks + favicon * Add link to my site
55 lines
725 B
SCSS
55 lines
725 B
SCSS
.inverted-colours {
|
|
background: $foreground;
|
|
color: $background;
|
|
}
|
|
|
|
.hero {
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
margin-top: 3rem;
|
|
margin-bottom: 6rem;
|
|
text-align: center;
|
|
|
|
&__tagline {
|
|
margin-bottom: 2rem;
|
|
}
|
|
}
|
|
|
|
.selling-points {
|
|
padding: 3rem;
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
.selling-point {
|
|
// 2 selling points per row on desktop
|
|
width: 33%;
|
|
padding: 2rem;
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
// and 1 on mobile
|
|
@media only screen and (max-width: 1000px) {
|
|
.hero {
|
|
width: 90%;
|
|
margin-top: 2rem;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.selling-points {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.selling-point {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|