This file ( 966B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
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 {
}