Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / navigation / more-link / more-link.css
diff --git a/web/core/profiles/demo_umami/themes/umami/css/components/navigation/more-link/more-link.css b/web/core/profiles/demo_umami/themes/umami/css/components/navigation/more-link/more-link.css
new file mode 100644 (file)
index 0000000..331b225
--- /dev/null
@@ -0,0 +1,32 @@
+/**
+ * @file
+ * This file is used to style the more link.
+ */
+
+.read-more__link {
+  background-color: inherit;
+  position: relative;
+  display: inline-block;
+  padding-right: 20px;
+  text-decoration: none;
+  text-transform: uppercase;
+}
+
+.read-more__link:focus,
+.read-more__link:hover {
+  text-decoration: underline;
+}
+
+.read-more__link:before {
+  position: absolute;
+  top: 50%;
+  right: 0;
+  width: 14px;
+  height: 14px;
+  margin-top: -7px;
+  content: '';
+  background-image: url('../../../../images/svg/pointer.svg');
+  background-repeat: no-repeat;
+  background-position: 0 0;
+  background-size: contain;
+}