A style for the Orca VGC: https://scratch.mit.edu/projects/1094935157/fullscreen/
The Orca VGC Stylus by cool-guys-bfc
Details
Authorcool-guys-bfc
LicenseNo License
Categoryscratch.mit.edu
Created
Updated
Size764 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name ?
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url("https://scratch.mit.edu/projects/1094935157/fullscreen/"), url("https://scratch.mit.edu/projects/1094935157/") {
body {
background-color:black;
opacity:1;
}
body * {
opacity:1;
font-weight:bolder;
padding:0px;
color:blue;
margin:0px;
/*
animation-name:rainbow;
animation-duration:0.5s;
animation-direction:forward;
animation-iteration-count:infinite;
*/
}
body * :placeholder {
opacity:0.25
}
@keyframes rainbow {
100%,0% {
color:red;
}
25% {
color:gray;
}
50% {
color:cyan;
}
75% {
color:blue;
}
}
}