/* ==UserStyle==
@name           Arial Destroyer
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Replaces Arial with Helvetica on all webpages
@author         pythoncoder42
@downloadURL none
==/UserStyle== */

@-moz-document regexp("^(?!.*docs.google.com).*$") {
    @font-face {
        font-family: 'Arial';
        src: local(' ');
        /* intentionally invalid font so that it goes to the next font in the stack (often Helvetica) */
    }
}

/* License: Licensed under CC0 public domain dedication: https://creativecommons.org/publicdomain/zero/1.0/ */