Last active
December 25, 2015 10:39
-
-
Save duncanmcdougall/6963527 to your computer and use it in GitHub Desktop.
code for a blogpost
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
.main-header { | |
.nav { | |
background-color: black; | |
li { | |
display: inline-block; | |
} | |
a { | |
color: white; | |
&:hover, | |
&:focus { | |
color: red; | |
} | |
} | |
} | |
} |
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
.main-header .nav { | |
background-color: black; | |
} | |
.main-header .nav li { | |
display: inline-block; | |
} | |
.main-header .nav a { | |
color: white; | |
} | |
.main-header .nav a:hover, | |
.main-header .nav a:focus { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment