Commit 2e3c3db7 authored by Jehan Tremback's avatar Jehan Tremback

add linkbutton mixins

parent d258bfc0
......@@ -170,3 +170,21 @@ $em: 14 / 1em !default;
@mixin tertiarytext {
font-size: .8em;
}
//LINKBUTTONS
@mixin linkbutton {
text-decoration: none;
cursor: pointer;
padding-left: 1.3em;
background-size: 1em 1em;
background-repeat: no-repeat;
background-position: left center;
color: black;
}
@mixin linkbutton_right {
@include linkbutton;
background-position: right;
padding-left: 0;
padding-right: 1.3em;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment