Fallout Wiki
Fallout Wiki
K (test)
KKeine Bearbeitungszusammenfassung
Zeile 19: Zeile 19:
 
.page__right-rail {
 
.page__right-rail {
 
opacity: 0.9;
 
opacity: 0.9;
  +
}
  +
  +
/* Links */
  +
#content a {
  +
/* Color transition does not work well on :visited links, so disable. */
  +
transition: none;
  +
}
  +
#content a:visited {
  +
color: var(--theme-link-color--visited);
  +
}
  +
#content .external {
  +
color: var(--theme-link-color--external);
  +
}
  +
#content .new {
  +
color: var(--theme-alert-color);
  +
}
  +
#content .new:hover {
  +
color: var(--theme-alert-color-hover);
 
}
 
}

Version vom 18. Juli 2021, 18:14 Uhr

body.skin-fandomdesktop {
    background: var(--theme-body-background-image) fixed center 0 / cover
}

.fandom-community-header__background::before {
    background-image: none;
}

.fandom-community-header__background {
    background: none;
}

/* content area transparency */
.page__main {
    opacity: 0.9;	
}

/* right rail transparency */
.page__right-rail {
    opacity: 0.9;
}

/* Links */
#content a {
    /* Color transition does not work well on :visited links, so disable. */
    transition: none;
}
#content a:visited {
    color: var(--theme-link-color--visited);
}
#content .external {
    color: var(--theme-link-color--external);
}
#content .new {
    color: var(--theme-alert-color);
}
#content .new:hover {
    color: var(--theme-alert-color-hover);
}