From 1fa88176fc9268d8043579312f2be24c32ed4608 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 30 May 2025 02:24:51 -0500 Subject: [PATCH] add icon --- images/upload-icon.png | Bin 0 -> 530 bytes style.css | 105 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 images/upload-icon.png create mode 100644 style.css diff --git a/images/upload-icon.png b/images/upload-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0efc325fc8caf2f8efa6ac12c0e192432b23557a GIT binary patch literal 530 zcmV+t0`2{YP)JW5It4>N{~Q?Yuv<@D+z+Q7F`Ig#I5=T?)(G&3-Jp?-3TJ$2lxjDT)DoG)yS3L z={_v&1B^zaD@61az`3g4 zST2{#qY103azwOX<^cex>SXE25V$=L|F3 zCdAQ%ZQEj7p{n*0GBe+F&Yg!4K5rkI8AJp*XXKnAB0Cj&?_WFTatPs$Cn5##i-=a+ zz+EYt*)C!04Tt(Y@_!J~qPVWlJT8e3I`h%R>;Ud=3( z7+*Fy=X=atcP0W&)1W&k1zSuiV$5s>pe-&75&i7Wb+=AthHlEe-$J5%(SHE^2I|@9 U!=&MWlmGw#07*qoM6N<$f-#`^-~a#s literal 0 HcmV?d00001 diff --git a/style.css b/style.css new file mode 100644 index 0000000..110c170 --- /dev/null +++ b/style.css @@ -0,0 +1,105 @@ +#os_table { + border: 1px solid; + border-collapse: collapse; + margin: 20px; +} + +#os_table td,#os_table th, #os_table tr { + border: 1px solid; + padding: 6px; +} + +.os_comment { + font-size: 12px; +} + +#copyright { + font-size: 10px; +} + +/* for the terminal */ +#term_wrap { + margin: 20px; + resize: both; + overflow: hidden; +} + +.term { + font-family: monospace,courier,fixed,swiss,sans-serif; + font-weight: normal; + font-variant-ligatures: none; + color: #f0f0f0; + background: #000000; + line-height: normal; + overflow: hidden; + white-space: nowrap; +} + +.term_content a { + color: inherit; + text-decoration: none; +} + +.term_content a:hover { + color: inherit; + text-decoration: underline; +} + +.term_cursor { + color: #000000; + background: #00ff00; +} + +.term_char_size { + display: inline-block; + visibility: hidden; + position: absolute; + top: 0px; + left: -1000px; + padding: 0px; +} + +.term_textarea { + position: absolute; + top: 0px; + left: 0px; + width: 0px; + height: 0px; + padding: 0px; + border: 0px; + margin: 0px; + opacity: 0; + resize: none; +} + +.term_scrollbar { background: transparent url(images/bg-scrollbar-track-y.png) no-repeat 0 0; position: relative; background-position: 0 0; float: right; height: 100%; } +.term_track { background: transparent url(images/bg-scrollbar-trackend-y.png) no-repeat 0 100%; height: 100%; width:13px; position: relative; padding: 0 1px; } +.term_thumb { background: transparent url(images/bg-scrollbar-thumb-y.png) no-repeat 50% 100%; height: 20px; width: 25px; cursor: pointer; overflow: hidden; position: absolute; top: 0; left: -5px; } +.term_thumb .term_end { background: transparent url(images/bg-scrollbar-thumb-y.png) no-repeat 50% 0; overflow: hidden; height: 5px; width: 25px; } +.noSelect { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; } + +#keyboard-icon { + margin-left: 5px + margin-right: 5px; +} + +/* file import */ +#files { + visibility: hidden; + width:1px; + height:1px; + padding: 0px; + margin: 0px; + border: 0px; +} + +label { + cursor: pointer; + margin-left: 5px; + margin-right: 5px; +} + +#net_progress { + visibility: hidden; + width: 80px; +}