Skip to content

YouTube - bring back old logo by nkapila6

Screenshot of YouTube - bring back old logo

Details

Authornkapila6

LicenseMIT

Categoryyoutube.com

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Bring back memories through the old YouTube logo.

Notes

Source code

/* ==UserStyle==
@name           YouTube - bring back old logo
@description    brings back old memories of the YouTube logo
@author         nkapila6
@namespace      https://github.com/nkapila6/yt-logo-userstyle/
@supportURL     https://github.com/nkapila6/yt-logo-userstyle/issues
@author         nkapila6
@match          *://*.youtube.com/*
@version        1.0.0
==/UserStyle== */


@-moz-document domain("youtube.com") {
/* Hide the existing logo and country code */
ytd-topbar-logo-renderer #logo-icon {
    display: none !important;
}

#country-code {
    display: none;
}
}

@-moz-document domain("youtube.com") {
/* Adding the old logo */
ytd-topbar-logo-renderer #logo::before {
    content: '';
    display: inline-block;
    width: 90px;
    height: 60px;
    background-image: url('https://raw.githubusercontent.com/nkapila6/yt-logo-userstyle/main/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    justify-content: center;
}
}

Reviews

No reviews yet.