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

github.com/mismith0227/hugo_theme_pickles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/object/project/screen-reader-text.scss')
-rw-r--r--src/scss/object/project/screen-reader-text.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/scss/object/project/screen-reader-text.scss b/src/scss/object/project/screen-reader-text.scss
new file mode 100644
index 0000000..358c69c
--- /dev/null
+++ b/src/scss/object/project/screen-reader-text.scss
@@ -0,0 +1,28 @@
+.p-screen-reader-text {
+ clip: rect(1px, 1px, 1px, 1px);
+ position: absolute !important;
+ height: 1px;
+ width: 1px;
+ overflow: hidden;
+ &:hover,
+ &:active,
+ &:focus {
+ background-color: #f1f1f1;
+ border-radius: 3px;
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+ clip: auto !important;
+ color: var(--link-color);
+ display: block;
+ font-size: 14px;
+ font-size: 0.875rem;
+ font-weight: bold;
+ height: auto;
+ left: 5px;
+ line-height: normal;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ top: 5px;
+ width: auto;
+ z-index: 100000;
+ }
+}