This repository has been archived on 2020-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-blog/assets/css/_about.scss

63 lines
777 B
SCSS
Raw Normal View History

2020-02-19 21:42:08 +00:00
.page.about {
.content {
text-align: center;
}
ul {
padding-left: 0;
list-style: none;
}
2020-02-20 21:34:46 +00:00
.column > p,
.column > ul,
2020-02-19 21:42:08 +00:00
article > p,
article > ul {
font-size: 1.1em;
}
2020-02-20 21:34:46 +00:00
.column > p,
2020-02-19 21:42:08 +00:00
article > p {
margin: 3rem;
}
li {
margin: 2rem 0;
}
h2 {
font-size: 2.2rem;
line-height: 2.6rem;
}
2020-02-20 21:34:46 +00:00
h3 {
font-size: 1.1em;
}
// TODO - use grid for this (maybe keep this for fallback?)
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.column {
flex: 0 0 50%;
@media (min-width: 768px) {
flex: 0 0 33%;
}
h3 {
margin-left: 1.5em;
margin-right: 1.5em;
margin-top: 0;
}
li {
margin: 1rem 0;
}
}
2020-02-19 21:42:08 +00:00
}