Text Link

Text Link Documentation

Original source: https://utsa-asc.github.io/college-dls/college-dls/reference/navigation-standard.html#standard-button-wrapper

Non-button styles for text-links were added outside of the initial implementation for completeness. More color variations may need to be developed here in the future.

<a href="#" class="view-all-link">I am a text link. <i class="fas fa-arrow-right" aria-hidden="true"></i></a>
  • Content:
    /* components/01-visual-styling/04-button/01-text-link/text-link.scss */
    /* BEGIN text-link.scss */
    
    
    .grey-bg .view-all-link, .view-all-link {
    	color: $blue;
    	font-size: 1rem;
    }
    
    .blue-bg .view-all-link, .orange-a11y-bg .view-all-link {
        color: $white;
    }
    
    a.blue-bg h2 {
    	color: $white;
    }
    
    .view-all-link i,
    .view-all-link svg {
    	color: $orange-a11y;
    	padding-left: 3px;
    }
    
    .orange-a11y-bg .view-all-link i,
    .orange-a11y-bg .view-all-link svg {
    	color: $blue;
    }
    
    /* Dark Mode - Text Link Styles */
    @include color-mode(dark) {
    	.grey-bg a.view-all-link:hover {
    		color:$white;
    	}
    }
    /* Dark Mode - Text Link END */
  • URL: /components/raw/text-link/text-link.scss
  • Filesystem Path: components/01-visual-styling/02-button/01-text-link/text-link.scss
  • Size: 616 Bytes
<a href="#" class="view-all-link" >{{ text }} <i class="fas fa-arrow-right" aria-hidden="true"></i></a>