RSS Git Download  Clone
Raw Blame History
html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

body {
    position: relative;
}

webview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

webview.p3xre-webview-loading {
    visibility: hidden;
}

#p3xre-loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: #000;
    color: #fff;
    pointer-events: none;
}

.p3xre-spinner {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    animation: p3xre-spin 0.9s linear infinite;
}

@keyframes p3xre-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#p3xre-loading-overlay.p3xre-hidden {
    display: none;
}

.p3xre-toast-default .md-toast-content {
}