-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 00120; Part of Version 00130
### Core / Various - Added (path) to listfs() - It can now output the contents of a path directly - Removed automatic embedding of helper.css through helper.js - Developers are now supposed to embed both - Fixed some SVGs - Updated preload.html - Updated some outdated links - Added dark scrollbar to Darkmode ### CMD - Removed toggledevmode command ### Soft Excel - Added helper.css ### Explorer - Added helper.css - Changed from unknown_file.png to unknown_file.svg ### Startmenu - Added helper.css ### Hype Chat - Added helper.css - Added Altbar - Changes to CSS ### Notepad - Added helper.css ### Paint - Added helper.css ### Paint32x32 - Added helper.css ### Settings - Added helper.css ### Simple Cookieclicker - Added helper.css Set Version to 00124
- Loading branch information
Showing
39 changed files
with
526 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
body { | ||
height: 100vh; | ||
} | ||
|
||
* { | ||
transition: 0s; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
outline:0px solid transparent; | ||
border:0px solid transparent; | ||
|
||
} | ||
|
||
#imagep { | ||
position: relative; | ||
display: flex; | ||
top: 0; | ||
left: 0; | ||
height: calc(100% - var(--altbarheight)); | ||
width: 100%; | ||
justify-content: center; | ||
align-items: center; | ||
background:var(--beige2); | ||
} | ||
|
||
#image { | ||
overflow: hidden; | ||
height: calc(90vmin - var(--altbarheight)); | ||
width: calc(90vmin - var(--altbarheight)); | ||
display: flex; | ||
position: relative; | ||
flex-wrap: wrap; | ||
align-content: flex-start; | ||
border:1px solid #000; | ||
|
||
} | ||
|
||
#image button { | ||
margin: 0; | ||
width: 6.25%; | ||
padding:0; | ||
padding-top: 6.25%; | ||
border:0; | ||
background:#fff; | ||
} | ||
|
||
#colorselect { | ||
background-color: var(--hovercolor); | ||
z-index: 943; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
position: absolute; | ||
left: 10px; | ||
top: calc(var(--altbarheight) + 10px); | ||
height: auto; | ||
width: auto; | ||
max-height:calc(85vh - var(--altbarheight)); | ||
padding-bottom: 3px; | ||
border: 2px solid #000; | ||
} | ||
|
||
#colorselect button { | ||
height: 20px; | ||
width: 20px; | ||
margin:0; | ||
padding:0; | ||
border:0; | ||
} | ||
|
||
#colorselect #currentcolor { | ||
transition: .5s; | ||
display: block; | ||
border: 2px solid #000; | ||
margin: 3px; | ||
background-color: #000; | ||
height: 40px; | ||
width: 40px; | ||
} | ||
|
||
#blue { | ||
background-color: #00f; | ||
} | ||
|
||
#blue2 { | ||
background-color: #07f; | ||
} | ||
|
||
#yellow { | ||
background-color: #ff0; | ||
} | ||
|
||
#green { | ||
background-color: #0f0; | ||
} | ||
|
||
#green2 { | ||
background-color:#7a1; | ||
} | ||
|
||
#red { | ||
background-color: #f00; | ||
} | ||
|
||
#orange { | ||
background-color: #f70; | ||
} | ||
|
||
#pink { | ||
background-color:#f0f; | ||
} | ||
|
||
#white { | ||
background-color: #fff; | ||
} | ||
|
||
#black { | ||
background-color: #000; | ||
} | ||
|
||
#gray1 { | ||
background-color: #555; | ||
} | ||
|
||
#gray2 { | ||
background-color: #bbb; | ||
} | ||
|
||
#brown { | ||
background-color: #7c3e15; | ||
} | ||
|
||
@media (prefers-color-scheme:dark) { | ||
#imagep { | ||
background:var(--black); | ||
} | ||
|
||
#colorselect { | ||
border-color: var(--themecolor); | ||
background:var(--black3); | ||
} | ||
#imagep #image { | ||
border:2px solid var(--themecolor); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<link rel="stylesheet" href="devexample.css"> | ||
<link rel="stylesheet" href="../../helper.css"> | ||
<script src="../../helper.js"></script> | ||
<meta charset="UTF-8"> | ||
<title>Devexample</title> | ||
</head> | ||
|
||
<body> | ||
<div class="altbar"></div> | ||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
var canvas = document.getElementById("image"); | ||
var canvascontent1 = canvas.innerHTML; | ||
var mouseDown = 0; | ||
|
||
for(i=0;i<256;i++) { | ||
canvascontent1 = canvascontent1 + "<button onmousedown='paint1(this)' onclick='paint1(this)' onmouseover='paint(this)'></button>"; | ||
} | ||
|
||
canvas.innerHTML = canvascontent1; | ||
|
||
document.body.onmousedown = function() { | ||
mouseDown = 1; | ||
} | ||
document.body.onmouseup = function() { | ||
mouseDown = 0; | ||
} | ||
|
||
function paint(thepixel) { | ||
if(mouseDown){ | ||
thepixel.style.backgroundColor = color; | ||
} | ||
} | ||
|
||
function paint1(thepixel) { | ||
thepixel.style.backgroundColor = color; | ||
} | ||
|
||
function clr(clr) { | ||
color = clr; | ||
document.getElementById("currentcolor").style.backgroundColor = color; | ||
|
||
} | ||
var color="#000"; |
Oops, something went wrong.