Created
January 11, 2018 02:29
-
-
Save Lokno/7bc25e3f0607aadc36cb825eab93b7e9 to your computer and use it in GitHub Desktop.
Added a transition property to lines 31-49 in sylvania.html
This file contains 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
html.letter { | |
background-color: #D3FF99; | |
color: #005046; | |
} | |
html.transition { | |
transition: background-color 2.0s ease; | |
background-color: #005046; | |
color: #ffffff; | |
} | |
html.camp { | |
transition: background-color 2.0s ease; | |
background-color: #00134C; | |
color: #E5EBFF; | |
} | |
html.creek { | |
transition: background-color 2.0s ease; | |
background-color: #3F0066; | |
color: #FFF9CC; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment