Created
January 15, 2014 22:08
-
-
Save flynnduism/8445699 to your computer and use it in GitHub Desktop.
Looking at some of the baseline CSS changes in the new version - link colors and hover states are acting differently, as are ````p```` tags.
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
// excerpts from _ey-scaffolding.scss | |
a { | |
color: $blue; | |
text-decoration: none; | |
&:hover, | |
&:focus { | |
color: darken($blue, 10); | |
text-decoration: underline; | |
} | |
} | |
p { | |
color: $darkGray2; | |
} |
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
// exceprts from _ey-bootstrap.scss | |
p { | |
margin: 0; | |
@include textLayout(); //uses default 15px/1.5 | |
+p { | |
//padding-top: 0; | |
} | |
a { | |
border-bottom: 1px dotted $blue; | |
&:hover { | |
border-color: transparent; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment