Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:32
Show Gist options
  • Save groenewege/3957631 to your computer and use it in GitHub Desktop.
Save groenewege/3957631 to your computer and use it in GitHub Desktop.
css - inline link
.inline-link-1 {
display: inline-block;
margin: 0 0.2em;
padding: 3px;
background: #97CAF2;
border-radius: 2px;
transition: all 0.3s ease-out;
/* Font styles */
text-decoration: none;
font-weight: bold;
color: white;
}
.inline-link-1:hover {
background: #53A7EA
}
.inline-link-1:active {
background: #C4E1F8
}
.inline-link-1:visited {
background: #F2BF97
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment