jottenlips / agave

🍯 Sweet simple static site generator
https://jottenlips.github.io/
Other
13 stars 0 forks source link

Themes #2

Open jottenlips opened 4 years ago

jottenlips commented 4 years ago

create a bunch of decent CSS markdown themes

jottenlips commented 4 years ago

Theme ideas: Desert Night Vapor wave city pixel/retro gaming forest

jottenlips commented 4 years ago

ex. The basic theme and blue color with a random photo

 <style>
      @import url("https://fonts.googleapis.com/css2?family=Epilogue&display=swap");
      html {
        background: #ffffff;
      }
      body {
        font-family: "Epilogue", sans-serif;
      }
      .coverimage {
        /* RANDOM PHOTO */
        background: url(https://picsum.photos/2000/1500); 
        background-repeat: no-repeat;
        background-size: cover;
      }
      svg {
        display: none;
        height: 0;
        width: 0;
        color: clear;
      }
      code {
        flex: 1;
        border-radius: 2px;
        padding: 4px;
        background-color: #000000;
        color: #ffffff;
        line-height: 200%;
        word-wrap: break-word;
      }
      pre {
        background-color: #000000;
        width: 90%;
        border-radius: 6px;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        overflow-x: scroll;
      }
      .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        border: 4px solid #e3e3e3;
        min-height: 100vh;
      }
      .block {
        width: 100%;
        max-width: 800px;
        min-width: 300px;
        background-color: aliceblue;
        padding: 20px;
        overflow-y: scroll;
      }
    </style>
jottenlips commented 4 years ago

https://jottenlips.github.io