Skip to content

Instantly share code, notes, and snippets.

@flynnduism
Created January 15, 2014 22:08
Show Gist options
  • Save flynnduism/8445699 to your computer and use it in GitHub Desktop.
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.
// excerpts from _ey-scaffolding.scss
a {
color: $blue;
text-decoration: none;
&:hover,
&:focus {
color: darken($blue, 10);
text-decoration: underline;
}
}
p {
color: $darkGray2;
}
// 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