Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Themes #2

Open
jottenlips opened this issue Sep 28, 2020 · 3 comments
Open

Themes #2

jottenlips opened this issue Sep 28, 2020 · 3 comments
Labels
documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers hacktoberfest help wanted Extra attention is needed

Comments

@jottenlips
Copy link
Owner

create a bunch of decent CSS markdown themes

@jottenlips jottenlips added documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers hacktoberfest help wanted Extra attention is needed labels Sep 28, 2020
@jottenlips
Copy link
Owner Author

jottenlips commented Sep 28, 2020

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

@jottenlips
Copy link
Owner Author

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
Copy link
Owner Author

jottenlips commented Oct 1, 2020

Repository owner deleted a comment from leocsilva Mar 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers hacktoberfest help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant