User:Vinifera7/common.css

From Path of Exile Wiki
Jump to navigation Jump to search

Note: After saving, you have to bypass your browser's cache to see the changes. The simplest method that will work for most users is to hold down the ⇧ Shift key and click the Reload toolbar button. For details and other methods, see Help:Clear your browser cache.

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.loading-spinner {
    
}
.loading-spinner svg {
    display: inline-block;
    vertical-align: -0.125em;
    width: 1em;
    height: 1em;
    animation: spin 2s linear infinite;
}

.trade-widget__loader {
    display: none;
    font-size: 2em;
}
.trade-widget.is-loading .trade-widget__loader {
    display: initial;
}
.trade-widget.is-loading .trade-widget__form {
    display: none;
}