Created
September 12, 2020 13:24
Revisions
-
sampoder created this gist
Sep 12, 2020 .There are no files selected for viewing
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 charactersOriginal 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; }