CSS: meteoblue.com

Corrections of meteoblue.com CSS

Verze ze dne 28. 12. 2020. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name          CSS: meteoblue.com
// @description   Corrections of meteoblue.com CSS
// @author        MK
// @homepage      https://greasyfork.org/en/scripts/419280
// @namespace     https://greasyfork.org/users/309172
// @include       https://www.meteoblue.com/*
// @include       http://www.meteoblue.com/*
// @version       1.0
// @date          2020-12-28
// ==/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;",
"  }"
].join("\n");

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);
    }
  }
})();