Difference between revisions of "User:Dclark/common.css"

From OrthodoxWiki
Jump to: navigation, search
m
m
Line 7: Line 7:
 
}
 
}
  
a[href*="youtube"]:before {
+
a[href*="youtu"]:before {
 
     content: "\f16a";
 
     content: "\f16a";
 
     color: #2c4388;
 
     color: #2c4388;
Line 13: Line 13:
 
}
 
}
  
a[href*="youtube"].external {
+
a[href*="youtu"].external {
 
     background-image: none
 
     background-image: none
 
}
 
}

Revision as of 17:02, April 12, 2020

/* Styling links for YouTube */
a:before {
    font-family: 'FontAwesome';
    color: #777;
    display: inline-block;
    text-decoration: none
}

a[href*="youtu"]:before {
    content: "\f16a";
    color: #2c4388;
    margin: 0 4px 0 2px
}

a[href*="youtu"].external {
    background-image: none
}

/* Styling links for Reddit */
a:before {
    font-family: 'FontAwesome';
    color: #777;
    display: inline-block;
    text-decoration: none
}

a[href*="reddit"]:before {
    content: "\f1a1";
    color: #2c4388;
    margin: 0 4px 0 2px
}

a[href*="reddit"].external {
    background-image: none
}