Upload files to "/"

This commit is contained in:
Rosia Evans 2025-04-01 09:18:49 +00:00
parent 5dc9fa8c3a
commit 36b1ea9947
5 changed files with 124 additions and 0 deletions

73
decreasefont.svg Normal file
View file

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="144"
height="144"
viewBox="0 0 38.099999 38.100001"
version="1.1"
id="svg5"
sodipodi:docname="decreasefont.svg"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
units="px"
width="144px"
inkscape:zoom="3.7543719"
inkscape:cx="71.782978"
inkscape:cy="100.14991"
inkscape:window-width="1128"
inkscape:window-height="1359"
inkscape:window-x="1128"
inkscape:window-y="32"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
style="font-size:25.2818px;line-height:1.25;font-family:sans-serif;word-spacing:0px;stroke-width:1.89614;fill:#729b78;stroke:#729b78"
x="-19.042028"
y="34.111866"
id="text1508"
transform="scale(-0.96763035,1.0334525)"><tspan
sodipodi:role="line"
id="tspan1506"
style="stroke-width:1.89614;fill:#729b78;stroke:#729b78"
x="-19.042028"
y="34.111866">T</tspan></text>
<text
xml:space="preserve"
style="font-size:13.7635px;line-height:1.25;font-family:sans-serif;word-spacing:0px;stroke-width:1.03226;fill:#729b78;stroke:#729b78"
x="-27.566004"
y="35.14888"
id="text1508-3"
transform="scale(-0.99858969,1.0014123)"><tspan
sodipodi:role="line"
id="tspan1506-6"
style="stroke-width:1.03226;fill:#729b78;stroke:#729b78"
x="-27.566004"
y="35.14888">T</tspan></text>
<path
style="fill:#729b78;fill-opacity:1;stroke:#729b78;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 29.87822,24.316112 36.484668,25.219044 35.52627,18.734482 33.294345,20.802178 19.220329,7.0231541 17.661908,8.5648971 31.928314,22.217661 Z"
id="path6230"
sodipodi:nodetypes="cccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

38
fb144.svg Normal file
View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 24 24"
width="144px"
height="144px"
version="1.1"
id="svg4"
sodipodi:docname="fb144.svg"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="5.1736111"
inkscape:cx="72"
inkscape:cy="72.096644"
inkscape:window-width="2256"
inkscape:window-height="1359"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="0"
inkscape:current-layer="svg4" />
<path
d="M12,2C6.477,2,2,6.477,2,12c0,5.013,3.693,9.153,8.505,9.876V14.65H8.031v-2.629h2.474v-1.749 c0-2.896,1.411-4.167,3.818-4.167c1.153,0,1.762,0.085,2.051,0.124v2.294h-1.642c-1.022,0-1.379,0.969-1.379,2.061v1.437h2.995 l-0.406,2.629h-2.588v7.247C18.235,21.236,22,17.062,22,12C22,6.477,17.523,2,12,2z"
id="path2"
style="fill:#9ed1a7;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
fish-groove.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 KiB

9
fontScaler.js Normal file
View file

@ -0,0 +1,9 @@
console.log(document)
// add buttons
document.body.innerHTML +=
"<div class=\"font_scaler\">" +
"<button><img src=\"increasefont.svg\"/></button>" +
"<button><img src=\"decreasefont.svg\"/></button>" +
"</div>"
// code to make buttons work

4
gallery.js Normal file
View file

@ -0,0 +1,4 @@
function maximise(target){
target.classList.toggle("maximised")
}