1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #page.home {
- justify-content: center;
- }
- #home-center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding: 0 10vw;
- font-size: 1.2em;
- }
- #home-title {
- line-height: normal;
- margin-bottom: .3em;
- }
- #home-social > a {
- padding-right: .5em;
- font-size: 1.4em;
- }
- #home-nav {
- margin: 1em 0;
- letter-spacing: normal;
- > a {
- display: inline-block;
- border: 1px solid var(--c-txt-alt);
- padding: 0 .4em;
- font-size: .8em;
- margin-top: .5em;
- &:hover {
- border-color: $accent;
- }
- &:active {
- border-style: dashed;
- }
- }
- }
- #recent-posts {
- margin-top: 2em;
- }
- .recent-posts-list {
- list-style: none;
- padding-left: 0;
- font-size: 1rem;
- li {
- margin-bottom: .2em;
- }
- span {
- margin-right: .5em;
- color: var(--c-txt-alt);
- }
- a {
- display: block;
- }
- }
- #home-footer {
- padding: 0 10vw;
- font-size: .8em;
- letter-spacing: normal;
- }
|