diff options
Diffstat (limited to 'bootstrap/less/mixins/text-emphasis.less')
-rwxr-xr-x | bootstrap/less/mixins/text-emphasis.less | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bootstrap/less/mixins/text-emphasis.less b/bootstrap/less/mixins/text-emphasis.less new file mode 100755 index 0000000..9e8a77a --- /dev/null +++ b/bootstrap/less/mixins/text-emphasis.less @@ -0,0 +1,9 @@ +// Typography + +.text-emphasis-variant(@color) { + color: @color; + a&:hover, + a&:focus { + color: darken(@color, 10%); + } +} |