Skip to content

uncrapify by early.rejector

Details

Authorearly.rejector

LicenseCC-BY-SA-4.0

Categoryall websites

Created

Updated

Size1.9 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

`make corners square, remove shadows, remove animations

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         uncrapify
@version      20240727.11.21
@namespace    https://userstyles.world/user/early.rejector
@description  `make corners square, remove shadows
@author       early.rejector
@license      CC-BY-SA-4.0
==/UserStyle== */

@-moz-document regexp(".*") {
/* ==UserStyle==
@name           uncrapify 
@namespace      USO Archive
@author         Early Rejector
@description    `make corners square, remove animations and shadows`
@version        20210812.0.0.3
@license        CC-BY-SA-4.0
@preprocessor   uso
==/UserStyle== */
/* square corners */
* {
    border-radius: 0px !important;
    appearance: none !important;
}


input[type = "radio"] {
    appearance: auto !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
}

input {
    appearance: auto !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
}

/* remove animations */
* {
    animation-iteration-count: 1 !important;
    animation-duration: 1ms !important;
    animation-delay: 1ms !important;
    transition-duration: 1ms !important;
    transition-delay: 1ms !important;
}

/* these kill transitions and animations, but break many sites
* {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
}



* {
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

* {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

*/
/* no shadows */
* {
    box-shadow: none !important;
}
}

Reviews

No reviews yet.