Skip to content

Instantly share code, notes, and snippets.

@sampoder
Created September 12, 2020 13:24

Revisions

  1. sampoder created this gist Sep 12, 2020.
    45 changes: 45 additions & 0 deletions style.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,45 @@
    /* @keyframes rainbow {
    14% {
    color: #ff0000;
    }
    28% {
    color: #ffa500;
    }
    42% {
    color: #ffff00;
    }
    56% {
    color: #008000;
    }
    70% {
    color: #0000ff;
    }
    84% {
    color: #4b0082;
    }
    100% {
    color: #ee82ee;
    }
    }
    .header-title-name{
    animation: rainbow 5s infinite;
    }
    .post:hover {
    transform: scale(1.02);
    }
    .post {
    transition: all .2s ease-in-out;
    } */

    :root {

    --colors-background: #a633d6;

    --colors-text: #ffff;

    --colors-elevated: #228B22;

    }