Skip to content

glossy example.com by mason20121981

Details

Authormason20121981

LicenseNo License

Categoryexample

Created

Updated

Size1.9 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

example

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           2007 Glossy Style
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Add a glossy, shiny, and bold-text style to websites with rounded corners.
@author         RetroDesignFan
==/UserStyle== */
@-moz-document domain("example.com") {
    body {
        font-family: Verdana, Arial, sans-serif;
        background: linear-gradient(to bottom, #f2f2f2 0%, #e6e6e6 100%);
        color: #333;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    h1, h2, h3 {
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        color: #444;
    }

    .button {
        display: inline-block;
        background: linear-gradient(to bottom, #4cafef 0%, #0078d7 100%);
        border: 1px solid #005bb5;
        border-radius: 12px;
        padding: 10px 20px;
        color: white;
        font-size: 16px;
        font-weight: bold;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

    .button:hover {
        background: linear-gradient(to bottom, #5bc2ff 0%, #0084ff 100%);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .card {
        background: white;
        border: 1px solid #ccc;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    a {
        color: #0078d7;
        text-decoration: none;
        font-weight: bold;
    }

    a:hover {
        text-decoration: underline;
    }

    input, textarea {
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 8px;
        font-size: 14px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

Reviews

No reviews yet.