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

From OrthodoxWiki
Jump to: navigation, search
m
m (Undo revision 127699 by Dclark (talk))
Line 10: Line 10:
 
     content: "\f16a";
 
     content: "\f16a";
 
     color: #2c4388;
 
     color: #2c4388;
     margin: 0 0px 0 0px
+
     margin: 0 4px 0 2px
 
}
 
}
  
 
a[href*="youtu"].external {
 
a[href*="youtu"].external {
 
     background-image: none
 
     background-image: none
 +
    padding-right: 0px
 
}
 
}
  
Line 33: Line 34:
 
a[href*="reddit"].external {
 
a[href*="reddit"].external {
 
     background-image: none
 
     background-image: none
 +
    padding-right: 0px
 
}
 
}

Revision as of 17:27, 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
    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
}