Flipline Studios Wiki
Advertisement

Note: After publishing, 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: Press Ctrl-F5.
/***** CSS placed here will be applied to all skins on the entire site. *****/
/*Scrollbar*/
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
 
::-webkit-scrollbar-thumb {
    background: #00b359;
}
 
::-webkit-scrollbar-thumb:hover {
    background: #00994d !important;
}
 
::-webkit-scrollbar-thumb:active {
    background: red !important;
}
 











 
a {
    color: #00B2EE;
    text-shadow: 0 -15px 2.5px transparent,0 15px 2.5px transparent;
}
 
a:active {
    color: red !important;
    text-shadow: 0 0 2.5px #FF0000,0 0 2.5px red;
}
 
.WikiaNotifications li div a {
    color: #00b300;
}
 
/* Text animations by Akrivus */
.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%; /* show the marquee just outside the paragraph */
    animation: marquee 15s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
    0% {
        transform: translate(0,0);
    }

    100% {
        transform: translate(-100%,0);
    }
}

.grow {
    transition: 1s;
}

.grow:hover {
    font-size: 200%;
    transition: 1s;
}

.shrink {
    transition: 1s;
}

.shrink:hover {
    font-size: 50%;
    transition: 1s;
}
Advertisement