331b225ef9288b0ce0cfedb54b26954f069d5150
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / navigation / more-link / more-link.css
1 /**
2  * @file
3  * This file is used to style the more link.
4  */
5
6 .read-more__link {
7   background-color: inherit;
8   position: relative;
9   display: inline-block;
10   padding-right: 20px;
11   text-decoration: none;
12   text-transform: uppercase;
13 }
14
15 .read-more__link:focus,
16 .read-more__link:hover {
17   text-decoration: underline;
18 }
19
20 .read-more__link:before {
21   position: absolute;
22   top: 50%;
23   right: 0;
24   width: 14px;
25   height: 14px;
26   margin-top: -7px;
27   content: '';
28   background-image: url('../../../../images/svg/pointer.svg');
29   background-repeat: no-repeat;
30   background-position: 0 0;
31   background-size: contain;
32 }