[DEPRECATED, NEKOWEB HAS A FULL SCREEN EDITOR NOW] makes the NekoWeb code editor full screen
[DEPRECATED] NekoWeb Full Screen Code Editor by CombustibleLemonyade
![Screenshot of [DEPRECATED] NekoWeb Full Screen Code Editor](https://userstyles.world/preview/14951/0.jpeg)
Details
AuthorCombustibleLemonyade
LicenseNo License
Categorynekoweb.org
Created
Updated
Code size666 B
Code checksumbdec37bb
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
[DEPRECATED, NEKOWEB HAS A FULL SCREEN EDITOR NOW] this sadly WILL hide the minidashboard, as this is just supposed to make it more similar to the Neocities editor, which does not have a minidashboard.
Source code
/* ==UserStyle==
@name nekoweb full screen code editor
@version 20240225.16.46
@namespace ?
==/UserStyle== */
@-moz-document domain("nekoweb.org") {
#editor-body {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* knowing my code this is probably extremely janky and might instantly break if any changes happen but oh well :3 */
#editor {
position: absolute;
top: 20px;
left: 0;
right: 0;
bottom: 0;
height: calc(100% - 20px);
}
#control {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 20px;
background-color: inherit;
z-index: 9999;
}
}