Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'site/assets/scss/_anchor.scss')
-rw-r--r--site/assets/scss/_anchor.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/site/assets/scss/_anchor.scss b/site/assets/scss/_anchor.scss
new file mode 100644
index 0000000000..d9e72cf543
--- /dev/null
+++ b/site/assets/scss/_anchor.scss
@@ -0,0 +1,11 @@
+.anchorjs-link {
+ font-weight: 400;
+ color: rgba($link-color, .5);
+ @include transition(color .15s ease-in-out, opacity .15s ease-in-out);
+
+ &:focus,
+ &:hover {
+ color: $link-color;
+ text-decoration: none;
+ }
+}