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/static/docs/4.3/assets/scss/_anchor.scss')
-rw-r--r--site/static/docs/4.3/assets/scss/_anchor.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/site/static/docs/4.3/assets/scss/_anchor.scss b/site/static/docs/4.3/assets/scss/_anchor.scss
new file mode 100644
index 0000000000..a712a78cdc
--- /dev/null
+++ b/site/static/docs/4.3/assets/scss/_anchor.scss
@@ -0,0 +1,10 @@
+.anchorjs-link {
+ font-weight: 400;
+ color: rgba($link-color, .5);
+ @include transition(color .15s ease-in-out, opacity .15s ease-in-out);
+
+ &:hover {
+ color: $link-color;
+ text-decoration: none;
+ }
+}