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

From OrthodoxWiki
Jump to: navigation, search
m (Undo revision 127699 by Dclark (talk))
m
 
Line 1: Line 1:
 +
/* awesome font icons are all listed at https://astronautweb.co/snippet/font-awesome/) */
 +
 
/* Styling links for YouTube */
 
/* Styling links for YouTube */
 
a:before {
 
a:before {

Latest revision as of 17:34, April 12, 2020

/* awesome font icons are all listed at https://astronautweb.co/snippet/font-awesome/) */

/* 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
    padding-right: 0px
}

/* 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
    padding-right: 0px
}