Skip to content

SteamStat.us - Miami Heat Red & Black by Nick2bad4u

Imported and mirrored from https://github.com/Nick2bad4u/UserStyles/raw/refs/heads/main/SteamStat.us-Re-Remastered-Miami-Heat.user.css

Screenshot of SteamStat.us - Miami Heat Red & Black

Details

AuthorNick2bad4u

LicenseUnLicense

Categorysteamstat

Created

Updated

Size5.5 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

SteamStat.us - Miami Heat Red & Black Theme with Advanced CSS

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         SteamStat.us - Miami Heat Red & Black
@version      20241115.16.04
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Miami Heat Red & Black Theme with Advanced CSS
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick
@license      UnLicense
==/UserStyle== */
@-moz-document domain("steamstat.us")
{
	/* Main title styling with red and black */
	.title
	{
		text-align: center;
		margin: 10px 0;
		font-size: 2.6em;
		font-weight: 700;
		color: #98002E;
		/* Miami Heat Red */
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
		background: linear-gradient(135deg, #98002E 30%, #FFF 70%);
		/* Red to Black gradient */
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		animation: title-animation 2s ease-in-out infinite alternate;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* Animation for the title */
	@keyframes title-animation
	{
		0%
		{
			transform: rotate(0deg);
		}

		100%
		{
			transform: rotate(10deg);
		}
	}

	/* Logo addition with scaling effect */
	.title::after
	{
		content: '';
		display: inline-block;
		width: 60px;
		height: 60px;
		background: url('https://upload.wikimedia.org/wikipedia/de/thumb/f/fb/Miami_Heat_logo.svg/442px-Miami_Heat_logo.svg.png') no-repeat center;
		background-size: contain;
		margin-left: 10px;
		transition: transform 0.3s ease;
	}

	.title:hover::after
	{
		transform: scale(1.2);
	}

	/* Link styling with hover effect */
	a
	{
		color: #98002E;
		/* Miami Heat Red */
		text-decoration: none;
		font-weight: bold;
		transition: color 0.3s ease, text-shadow 0.3s ease;
		text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
	}

	a:hover
	{
		color: #FFFFFF;
		/* White on hover for contrast */
		text-decoration: underline;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	}

	/* Status colors with red and black theme */
	.good
	{
		color: #98002E;
		/* Miami Heat Red */
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
		transition: color 0.3s ease;
	}

	.minor
	{
		color: #FFFFFF;
		/* White for minor status */
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
		font-weight: bold;
		transition: color 0.3s ease;
	}

	.major
	{
		color: #000000;
		/* Black for major status */
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
		font-weight: bold;
		transition: color 0.3s ease;
	}

	/* Refresh button styling with hover effect */
	#js-refresh
	{
		color: #98002E;
		/* Miami Heat Red */
		text-shadow: 0 0 2px rgb(0, 0, 0);
		font-weight: bolder;
		transition: color 0.3s ease, transform 0.3s ease;
	}

	#js-refresh:hover
	{
		color: #FFFFFF;
		/* White on hover */
		transform: scale(1.1);
	}

	/* Container with black background and red accents */
	.services,
	#psa,
	noscript
	{
		position: relative;
		background: #000000;
		/* Black background */
		border: 1px solid #98002E;
		/* Miami Heat Red border */
		border-radius: 3px;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0px 0px 1px rgb(0, 0, 1);
		box-shadow: 0px 4px 8px rgb(0, 0, 0);
		color: #FFFFFF;
		/* White text */
		transition: box-shadow 0.3s ease, background 0.3s ease;
	}

	.services:hover,
	#psa:hover,
	noscript:hover
	{
		box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
		background: rgba(0, 0, 0, .6);
		/* Miami Heat Red on hover */
	}

	/* Body styling with black and red gradient */
	body
	{
		margin: 0;
		color: #98002E;
		/* Miami Heat Red */
		font-family: 'Roboto', Arial, sans-serif;
		font-size: 16px;
		font-weight: 300;
		background: linear-gradient(135deg, #98002E 30%, #000000 70%);
		/* Red to Black gradient */
		text-shadow: 1px 1px 3px rgb(0, 0, 0);
		transition: background 0.3s ease;
	}

	body:hover
	{
		background: linear-gradient(135deg, #000000 30%, #98002E 70%);
		/* Black to Red gradient */
	}

	/* Tooltip customization with smooth transition */
	[data-tooltip]:before
	{
		visibility: hidden;
		opacity: 0;
		font-size: 0.9em;
		content: attr(data-tooltip);
		position: absolute;
		top: 0;
		left: 2%;
		width: 96%;
		background: #000000;
		/* Black background */
		color: #98002E;
		/* Miami Heat Red text */
		padding: 8px;
		border-radius: 6px;
		z-index: 1;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
		transition: visibility 0s, opacity 0.3s ease-in-out;
		font-style: italic;
		font-weight: 300;
	}

	[data-tooltip]:hover:before
	{
		visibility: visible;
		opacity: 1;
	}

	/* Advanced feature: Gradient border with transition */
	.gradient-border
	{
		position: relative;
		padding: 10px;
		border-radius: 5px;
		background-color: #98002E;
		/* Miami Heat Red */
		color: #FFFFFF;
		/* White text */
		font-weight: bold;
		text-align: center;
	}

	.gradient-border::before
	{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(45deg, #98002E, #000000, #98002E, #000000);
		/* Red to Black */
		background-size: 400% 400%;
		border-radius: 5px;
		z-index: -1;
		animation: gradient-border 3s linear infinite;
	}

	/* Animation for gradient border */
	@keyframes gradient-border
	{
		0%
		{
			background-position: 400% 0%;
		}

		50%
		{
			background-position: 0% 100%;
		}

		100%
		{
			background-position: 400% 0%;
		}
	}
}

Reviews

No reviews yet.