NikitaTH / AnimeMusicQuiz — Big Player, Small Chat

// ==UserScript==
// @name         AnimeMusicQuiz — Big Player, Small Chat
// @namespace    https://animemusicquiz.com/
// @version      0.2
// @description  Увеличивает размер видеоплеера и уменьшает игровой чат. Работает только для FullHD и браузера на полный экран (F11)
// @author       vk.com/nikitasb
// @match        https://animemusicquiz.com/*
// @run-at:      document-start
// @license      MIT
// ==/UserScript==
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}
addGlobalStyle('#qpVideoContainer { width: 100% !important; padding-top: 56.25% !important}');
addGlobalStyle('.col-xs-9 { width: 80% !important;}');
addGlobalStyle('.col-xs-3 { width: 20% !important;}');
addGlobalStyle('#qpAnimeCenterContainer { margin-left: 50px !important;}');
addGlobalStyle('.qpSideContainer { margin-top: 53% !important;}');
addGlobalStyle('.qpAvatarContainer {margin: 0 5% !important}');