Created
January 15, 2021 09:26
-
-
Save iamjaco/18bb5d2ebabc29c960dbaaca07e6e41d to your computer and use it in GitHub Desktop.
Monospace Blog Design
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header class="main-navigation"> | |
| <nav> | |
| <div> | |
| <a href="/work">~/work</a> | |
| <a href="/fun">~/fun</a> | |
| <a href="/code">~/code</a> | |
| </div> | |
| <div> | |
| <a href="/">/home/hayden</a> | |
| </div> | |
| <div> | |
| <a href="https://github.com/itshaydendev">/etc/github</a> | |
| </div> | |
| </nav> | |
| </header> | |
| <main class="container"> | |
| <article> | |
| <header> | |
| <div class="page-meta"> | |
| <span id="date">2020-06-27</span> | |
| </div> | |
| <h1>My adventures in NixOS</h1> | |
| </header> | |
| <section> | |
| <p class="lead">I'm baby tattooed messenger bag normcore dreamcatcher. Whatever lyft yuccie, fixie la croix etsy letterpress migas VHS direct trade pabst meh venmo copper mug scenester. Plaid freegan woke wayfarers, la croix vegan brooklyn ethical tousled.</p> | |
| <p> Cred bitters woke meh, normcore enamel pin locavore pop-up tumblr skateboard. Cornhole raclette schlitz hexagon cold-pressed tofu blue bottle poutine pop-up unicorn echo park whatever snackwave kitsch humblebrag. Cloud bread four dollar toast +1 poke adaptogen.</p> | |
| <p> Cred bitters woke meh, normcore enamel pin locavore pop-up tumblr skateboard. Cornhole raclette schlitz hexagon cold-pressed tofu blue bottle poutine pop-up unicorn echo park whatever snackwave kitsch humblebrag. Cloud bread four dollar toast +1 poke adaptogen.</p> | |
| <p> Cred bitters woke meh, normcore enamel pin locavore pop-up tumblr skateboard. Cornhole raclette schlitz hexagon cold-pressed tofu blue bottle poutine pop-up unicorn echo park whatever snackwave kitsch humblebrag. Cloud bread four dollar toast +1 poke adaptogen.</p> | |
| <p> Cred bitters woke meh, normcore enamel pin locavore pop-up tumblr skateboard. Cornhole raclette schlitz hexagon cold-pressed tofu blue bottle poutine pop-up unicorn echo park whatever snackwave kitsch humblebrag. Cloud bread four dollar toast +1 poke adaptogen.</p> | |
| <p> Cred bitters woke meh, normcore enamel pin locavore pop-up tumblr skateboard. Cornhole raclette schlitz hexagon cold-pressed tofu blue bottle poutine pop-up unicorn echo park whatever snackwave kitsch humblebrag. Cloud bread four dollar toast +1 poke adaptogen.</p> | |
| </section> | |
| </article> | |
| </main> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/prism.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font: 16px / 1.2 monospace; | |
| margin: 0; | |
| background: #282a36; | |
| color: #f8f8f2; | |
| } | |
| a { | |
| color: #ff79c6; | |
| text-decoration: none; | |
| } | |
| a:hover { | |
| color: #bd93f9; | |
| } | |
| h1, | |
| h2, | |
| h3, | |
| h4, | |
| h5, | |
| h6 { | |
| margin: 0 0 1rem; | |
| font-weight: bold; | |
| } | |
| h1 { | |
| font-size: 32px; | |
| } | |
| .main-navigation { | |
| display: flex; | |
| padding: 0 1rem; | |
| height: 48px; | |
| align-items: center; | |
| position: fixed; | |
| width: 100vw; | |
| top: 0; | |
| background: #282a36; | |
| justify-content: center; | |
| } | |
| .main-navigation nav { | |
| display: flex; | |
| justify-content: space-between; | |
| width: 80%; | |
| } | |
| .main-navigation nav div { | |
| width: 100%; | |
| display: flex; | |
| } | |
| .main-navigation nav div:nth-child(2) { | |
| justify-content: center; | |
| } | |
| .main-navigation nav div:last-child { | |
| justify-content: flex-end; | |
| } | |
| .main-navigation nav div a { | |
| padding: 0 0.5rem; | |
| } | |
| main { | |
| margin-top: 48px; | |
| width: 90%; | |
| } | |
| main.container { | |
| max-width: 650px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } | |
| article { | |
| padding-top: 80px; | |
| } | |
| article header { | |
| color: #bd93f9; | |
| margin-bottom: 40px; | |
| display: flex; | |
| height: 64px; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| border-bottom: 1px solid; | |
| } | |
| p.lead { | |
| margin-left: -30px; | |
| margin-right: -30px; | |
| font-size: 18px; | |
| line-height: 1.4; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/prism.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment