CSS: meteoblue.com

Corrections of meteoblue.com CSS

As of 2020-12-29. See the latest version.

// ==UserScript==
// @name          CSS: meteoblue.com
// @description   Corrections of meteoblue.com CSS
// @author        MK
// @homepage      https://gf.zukizuki.org/en/scripts/419280
// @namespace     https://gf.zukizuki.org/users/309172
// @include       https://www.meteoblue.com/*
// @include       http://www.meteoblue.com/*
// @version       1.1
// @note          v1.1 2020-12-29 - code rectified
// @note          v1.0 2020-12-28 - initial release
// ==/UserScript==

(function() {
  var css = `
  /*Position of cloud icons*/
  .picto .weekday.alt {
    line-height: unset !important;
  }

  /*Font size in hourly forecast table*/
  .hourly-forecast .hourlywind > tbody {
    font-size: 70% !important;
  }

  /*Dividers between cloud icons*/
  /*.hourly-forecasr .hourlywind > tbody > tr:nth-of-type(1),*/
  .hourly-forecast .hourlywind tr.pictos_3h td {
    padding: 0 !important;
    border-right-color: gray !important;
    border-right-style: solid !important;
    border-right-width: thin !important;
  }

  /*Active tab colour*/
  .tab.active {
    background: #ffc4000f !important;
    /*background: #ffffff !important;*/
  }
  /*Tab colour*/
  .tab {
    background: #e7ecf0 !important;
    /*background: #eaeaea !important;*/
  }
  /*Predictability meter background*/
  .tab_content .tab_predictability .meter_outer {
    background-color: hsl(0, 0%, 96.9%) !important;
  }

  /*Social icons*/
  .social {
    font-size: 100% !important;
  }
  .social a {
    font-size: 100% !important;
  }

  /*Headers*/
  h2, h3 {
    font-size: 150% !important;
  }
  `;

  if (typeof GM_addStyle != 'undefined') {
    GM_addStyle(css);
  } else if (typeof PRO_addStyle != 'undefined') {
    PRO_addStyle(css);
  } else if (typeof addStyle != 'undefined') {
    addStyle(css);
  } else {
    var node = document.createElement('style');
    node.type = 'text/css';
    node.appendChild(document.createTextNode(css));
    var heads = document.getElementsByTagName('head');
    if (heads.length > 0) {
      heads[0].appendChild(node);
    } else {
      // no head yet, stick it whereever
      document.documentElement.appendChild(node);
    }
  }
})();