Parcourir la source

Change link styling

sbkwgh il y a 8 ans
Parent
commit
00830aca3d
1 fichiers modifiés avec 7 ajouts et 15 suppressions
  1. 7 15
      src/assets/scss/elementStyles.scss

+ 7 - 15
src/assets/scss/elementStyles.scss

@@ -6,26 +6,18 @@ pre {
 }
 
 a {
-	text-decoration: none;
 	font-weight: 500;
-	color: $color__orange--darkest;
+	color: $color__darkgray--darker;
 	position: relative;
+	    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkqAcAAIUAgUW0RjgAAAAASUVORK5CYII= ) repeat-x 100% 100%;
+	    text-decoration: none;
 
-	&::after {
-		content: '';
-		height: 0.0625rem;
-		background-color: $color__orange--darkest;
-		bottom: -0.125rem;
-		width: 100%;
-		left: 0;
-		position: absolute;
-	}
 
  	&:hover, &:visited {
- 		color: $color__orange--darker;
- 		&::after {
- 			background-color: $color__orange--darker;
- 		}
+ 		color: $color__darkgray--primary;
+ 	}
+ 	&:active {
+ 		color: $color__darkgray--darker;
  	}
 }