Brings back the old element placement on user page in profile (stats on top, inventory on the left, character on the right)
DungeonsOfTheWell - Profile/User - Old CSS Style by Rick_Headle
Details
AuthorRick_Headle
LicenseMIT
Categorydungeons_of_the_well
Created
Updated
Size1.3 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
en
: Works directly on the user profile's webpage (https://vip3.activeusers.ru/app.php?act=user*); won't work through the iframe of the VK Application.
ru
: Работает если открыть профиль напрямую (https://vip3.activeusers.ru/app.php?act=user*); не сработает если открывать профиль через Приложение ВК.
Source code
// ==UserScript==
// @name DungeonsOfTheWell - Profile/User - Old CSS Style
// @name:ru Подземелья колодца - Профиль/User - Старый CSS стиль
// @namespace https://userstyles.world/
// @version 2025-01-21
// @description Brings back the old element placement on user page in profile (stats on top, inventory on the left, character on the right)
// @description:ru Возвращает старое расположение элементов на странице игрока в профиле (статы сверху, инвентарь слева, персонаж справа)
// @author Rick_Headle
// @match https://vip3.activeusers.ru/app.php?act=user*
// @icon none
// @grant none
// @license MIT
// ==/UserScript==
@-moz-document url-prefix("https://vip3.activeusers.ru/app.php?act=user") {
.profile-box {
width: 100%;
}
.js-chield-box {
float: left;
width: 100%;
}
.row .inventory-box {
float: left;
width: 49%;
min-height: 230px;
}
.row .progress-box {
float: right;
width: 49%;
}
}