Исправляет отображение дизайна DTF на широких экранах (16:9 и шире)
DTF: Фиксы редизайна by DonnerTechQ2
Details
AuthorDonnerTechQ2
LicenseNo License
Categorydtf.ru
Created
Updated
Size1.2 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 DTF: Фиксы редизайна
@version 20240606.13.26
@namespace https://userstyles.world/user/DonnerTechQ2
@description Исправляет отображение дизайна DTF на широких экранах (16:9 и шире)
@author DonnerTechQ2
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://dtf.ru/") {
@media (min-width: 925px) {
.layout,
.header__layout {
max-width: 100%;
/*grid-template-columns: var(--layout-left-aside-width) minmax(0,var(--layout-max-content-width)) var(--layout-left-aside-width);*/
gap: 50px;
}
.layout {
grid-template-columns: var(--layout-left-aside-width) minmax(0, var(--layout-max-content-width)) calc(var(--layout-left-aside-width) - 50px);
}
.header__right {
padding-right: var(--layout-left-aside-offset);
}
.user {
padding-right: var(--layout-left-aside-offset);
}
.distribution {
display: none;
}
/*
.header {
--theme-color-brand-header: #d9f5ff;
}
*/
.live {
display: none;
}
}
:root {
--layout-max-content-width: 940px;
}
}