This style is mainly used to make the Champion List page easier to read.
Fonts are set assuming Japanese.
OP.GG (League of Legends) by nora
Details
Authornora
LicenseNo License
Categoryuserstyles
Created
Updated
Size2.7 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name OP.GG (League of Legends)
@version 20220321.04.31
@namespace userstyles.world/user/nora
@description This style is mainly used to make the Champion List page easier to read.
Fonts are set assuming Japanese.
@author nora
@license No License
==/UserStyle== */
@-moz-document domain("op.gg") {
* {
font-family: Noto Sans,
Noto Sans JP,
Helvetica Neue,
Arial,
Hiragino Kaku Gothic ProN,
Hiragino Sans,
Meiryo,
sans-serif!important;
}
#content-container {
width: 1300px;
display: grid;
grid-template-columns: 1fr 500px;
}
#content-container > * {
flex-basis: 0;
max-width: initial;
width: auto;
}
/* チャンピオン一覧 */
#content-container > aside > div:nth-of-type(2) {
display: none;
}
#content-container > aside > nav {
display: grid;
flex-basis: 0;
grid-template: auto/repeat(8, 1fr);
row-gap: 0.4rem;
padding: 1.2rem 0rem 1rem 1rem;
}
#content-container > aside > nav > a {
transition: opacity 0.2s;
}
#content-container > aside > nav > a:hover {
opacity: 0.7;
}
#content-container > aside > nav > a > * {
margin-right: 0!important;
}
#content-container > aside > nav > a > img,
#content-container > aside > nav > a > div > img {
width: 80px;
height: 80px;
border-radius: 50%;
border: 1px solid var(--blue300);
box-shadow: 0 0 12px rgba(40, 40, 40, 0.16)
}
#content-container > aside > nav > a > div {
border: none;
}
#content-container > aside > nav > a > small {
font-weight: bold;
width: 80px;
height: auto;
margin: 0;
color: var(--gray400);
padding: 0.2rem 0.2rem;
box-sizing: border-box;
text-align: center;
}
#content-container > aside > nav > a > span em {
display: none;
}
/* ランキング */
.positionRank thead th {
height: 1rem;
}
.positionRank a img {
height: 24px;
width: 24px;
flex-basis: 24px;
border-radius: 50%;
border: 1px solid var(--blue300);
box-shadow: 0 0 12px rgba(40, 40, 40, 0.16)
}
.positionRank td {
height: 30px!important;
}
.positionRank td small {
display: none;
}
/* チャンピオン検索フォーム */
#championSearch {
width: calc(100% - 1.2rem);
box-sizing: border-box;
padding: 0.3rem 0.7rem!important;
font-size: 1.5rem!important;
margin: 0.6rem;
height: auto!important;
float: none;
color: #333;
}
#championSearch::placeholder {
font-weight: normal!important;
color: #aaa;
}
/* ADs */
#top-banner-ad,
#sash-banner-ad {
display: none;
}
.vm-skin {
display: none;
}
#beacon-container {
display: none;
}
iframe {
display: none;
}
}