&.#{$class} {
@include hollowButton($color);
}
- }
- @else {
+ } @else {
table tr td a {
border:1px solid $color;
color: $color;
&:visited{
color: $color;
}
+
&:hover {
border-color: darken($color, 10%);
color: darken($color, 10%);
}
}
}
+
table.button.hollow {
table td,
&:hover table td {
border-radius:0px;
background: transparent!important;
}
- table a {border-radius:0px;}
+
+ table a {
+ border-radius:0px;
+ }
+
&.radius {
table a {border-radius:$global-radius;}
}
+
&.rounded {
table a {border-radius:$global-rounded;}
}
@include hollowButton($alert-color,'alert');
@include hollowButton($warning-color,'warning');
@include hollowButton($success-color,'success');
-}
\ No newline at end of file
+}
<button class="expanded" href="http://zurb.com">Lorem ipsum </button>
</columns>
</row>
+ <row>
+ <columns small="12" large="12">
+ <button href="http://zurb.com" class="hollow" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow expanded" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow primary" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow secondary" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow warning" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow alert" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow success" href="http://zurb.com">I am a small button</button>
+ <button href="http://zurb.com" class="hollow disabled" href="http://zurb.com">I am a small button</button>
+ </columns>
+ </row>
</container>