Ro-Ghoul Wiki
No edit summary
No edit summary
Line 1: Line 1:
  +
/*--IMPORTS-KEEP TOP--*/
/* History page legibility*/
 
  +
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
  +
  +
/***** CSS placed here will be applied to all skins on the entire site. *****/
  +
/*--changing the font--*/
  +
body {
  +
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  +
}
  +
  +
/* Color user names of sysops (admins) in recent changes, logs, page histories, etc. */
  +
  +
a.mw-userlink[href="/wiki/User:Ox_Rookbane"], #wikiactivity-main a[href="/wiki/User:Ox_Rookbane"],
  +
a.mw-userlink[href="/wiki/User:Sitb"], #wikiactivity-main a[href="/wiki/User:Sitb"]
  +
{ color:#C500D1; }
  +
  +
/* profiles and stuff */
  +
.UserProfileMasthead .masthead-info-lower::before {
  +
display: none;
  +
}
  +
  +
.avatar {
  +
border-radius: 50%
  +
}
  +
  +
  +
/* Color user names of sysops (admins) in recent changes, logs, page histories, etc. */
  +
a.mw-userlink[href$="/wiki/User:Ox Rookbane"], #wikiactivity-main a[href="/wiki/User:Ox Rookbane"],
  +
a.mw-userlink[href="/wiki/User:Sitb"], #wikiactivity-main a[href="/wiki/User:Sitb"]
  +
{ color:#C500D1; }
  +
  +
/* Article/Blog Comments BASE */
  +
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Ox_Rookbane"]::after {
  +
content: "(Bureaucrat)";
  +
}
  +
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Sitb"]::after {
  +
content: "(Fandom Rep)";
  +
}
  +
  +
/* Article/Blog Comments TEXT */
  +
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Ox_Rookbane"]::after {
  +
font-size: 90%;
  +
color: #666;
  +
content: " (Bureaucrat)";
  +
}
  +
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Sitb"]::after {
  +
font-size: 90%;
  +
color: #666;
  +
content: " (Fandom Rep)";
  +
}
 
/* History page legibility*/
 
.diff-context {
 
.diff-context {
 
background-color: transparent;
 
background-color: transparent;

Revision as of 09:56, 2 June 2021

/*--IMPORTS-KEEP TOP--*/
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
 
/***** CSS placed here will be applied to all skins on the entire site. *****/
 /*--changing the font--*/
body {
 font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

/* Color user names of sysops (admins) in recent changes, logs, page histories, etc. */

a.mw-userlink[href="/wiki/User:Ox_Rookbane"], #wikiactivity-main a[href="/wiki/User:Ox_Rookbane"], 
a.mw-userlink[href="/wiki/User:Sitb"], #wikiactivity-main a[href="/wiki/User:Sitb"]
{ color:#C500D1; }

/* profiles and stuff */
.UserProfileMasthead .masthead-info-lower::before {
    display: none;
}
 
.avatar {
    border-radius: 50%
}
 
 
/* Color user names of sysops (admins) in recent changes, logs, page histories, etc. */
a.mw-userlink[href$="/wiki/User:Ox Rookbane"], #wikiactivity-main a[href="/wiki/User:Ox Rookbane"],
a.mw-userlink[href="/wiki/User:Sitb"], #wikiactivity-main a[href="/wiki/User:Sitb"]
{ color:#C500D1; }
 
/* Article/Blog Comments BASE */
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Ox_Rookbane"]::after {
    content: "(Bureaucrat)";
}
 .article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Sitb"]::after {
    content: "(Fandom Rep)";
}
 
/* Article/Blog Comments TEXT */
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Ox_Rookbane"]::after {
    font-size: 90%;
    color: #666;
    content: " (Bureaucrat)";
}
.article-comments .edited-by a[href$="https://roghoul-rblx.fandom.com/wiki/User:Sitb"]::after {
    font-size: 90%;
    color: #666;
    content: " (Fandom Rep)";
}
/* History page legibility*/
.diff-context {
    background-color: transparent;
    border-color: var(--theme-border-color);
    color: var(--theme-page-text-color);
}
.diff-deletedline {
    background-color: var(--theme-page-background-color--secondary);
    border-color: var(--theme-alert-color);
}
.diff-deletedline .diffchange {
    background-color: var(--theme-alert-color);
    color: #ffffff;
}
.diff-addedline {
    background-color: var(--theme-page-background-color--secondary);
    border-color: var(--theme-success-color);
}
.diff-addedline .diffchange {
    background-color: var(--theme-success-color);
    color: #ffffff;
}