Recyclex / GBF Compact Raids List

// ==UserScript==
// @name         GBF Compact Raids List
// @version      20200221.1
// @description  Fits more raids inside your window.
// @match        *://game.granbluefantasy.jp/*
// @match        *://gbf.game.mbga.jp/*
// @downloadURL  https://openuserjs.org/src/scripts/Recyclex/GBF_Compact_Raids_List.user.js
// @updateURL    https://openuserjs.org/src/scripts/Recyclex/GBF_Compact_Raids_List.user.js
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    var link = window.document.createElement('link');
    link.rel = 'stylesheet';
    link.type = 'text/css';
    link.href = 'data:text/css,' +
    // Selectors start here
        '.onm-be {display: none !important;}' + // remove Vyrn
        '.txt-baloon {display: none !important;}' + // remove text balloon
        '.prt-lead {min-height: 7px !important;}' + // space between AP/BP and raids
        '.btn-toggle-assist-owner {margin-top: -15px !important; margin-bottom: 10px !important;}' + // space between AP/BP and raids
        '.lis-raid {margin-bottom: 0px !important; margin-top: -14px !important; transform: scale(1, 0.85)}' + //sizes and margins
        '.lis-raid:first-of-type {margin-top: -5px !important;}' + //space between first raid and UI
        '.prt-raid-thumbnail {width: 65px !important;}' + //distance from thumbnail
        '.img-raid-thumbnail {transform: scale(0.85, 1) !important; margin-left: -5px;}' + //thumbnail size and position
        '.prt-raid-info {transform: scale(0.85, 1) !important;}' //raid info size
    ;
    document.getElementsByTagName("HEAD")[0].appendChild(link);
})();