User:Tark/Page.css

From Team Fortress Wiki
< User:Tark
Revision as of 15:50, 20 December 2021 by Tark (talk | contribs)
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Custom fonts */
@font-face {
    font-family: "BONX Medium";
    src: url("https://d33wubrfki0l68.cloudfront.net/b1e6b742643ca282474b1e0db6faddaafe74ffac/a6a28/public/fonts/bonx-medium.otf") format("opentype");
}

/* Custom styles */

#tark-div {
    font-family: "BONX Medium", sans-serif;
}

#tark-div.end {
    animation: glow 2s;
    color: #ff442ff0;
}

#tark {
    color: #5BC236 !important;
}

#tark-table a {
    color: #039be5 !important;
    text-decoration: none;
}

/* I probably shouldn't overwrite MW stuff... */

.mw-wiki-logo {
    background-image: url("https://i.imgur.com/5O6ZGYD.gif") !important;
    background-size: 135px 135px;
}

/* Animations */

@keyframes glow {
    from {
        color: #000000;
    }

    to {
        color: #ff442ff0;
    }
}