Just add background for Roblox Status
Use this with this script: https://greasyfork.org/vi/scripts/444510-script-for-roblox-status-css
Authorcocngk
LicenseMIT
CategoryRoblox
Created
Updated
Size1.2 kB
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Just add background for Roblox Status
Use this with this script: https://greasyfork.org/vi/scripts/444510-script-for-roblox-status-css
/* ==UserStyle==
@name Roblox Status Page (Rainbow Background)
@version 20220509.18.18
@namespace userstyles.world/user/cocngk
@description Just add background for Roblox Status
@author cocngk
@license No License
==/UserStyle== */
@-moz-document domain("status.roblox.com") {
body {
background-image: url('https://i.imgur.com/dgUaSX6.gif');
background-size: cover;
background-position: center center;
position: relative;
}
/* Grow */
.panel {
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
z-index: 1;
}
.panel:hover,
.panel:focus,
.panel:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
#statuspage_header_image {
transition: 0.5s ease;
}
#statuspage_header_image:hover {
opacity: 0.4;
transition: opacity 0.5s ease;
}
#statusio_status_bar {
pointer-events: none;
}
}