user_files

This commit is contained in:
Stian Lund
2022-10-28 13:31:36 +02:00
parent b70a3aaf0e
commit 7074164cdd
5 changed files with 174 additions and 262 deletions
BIN
View File
Binary file not shown.
-243
View File
@@ -1,243 +0,0 @@
@charset "UTF-8";
/*
Name: Emulate text browser
Version: 1.10
Author: Opera Software ASA
Description: This is a "text browser" style sheet. Tables and forms are kept, but images are
not displayed. Only one font and one size is used, but spacing and bolding is used on headings.
Copyright © 2003 Opera Software ASA.
*/
/* All elements */
* {
position: static !important;
max-height: none !important;
min-height: 0px !important;
height: auto !important;
max-width: none !important;
min-width: 0px !important;
width: auto !important;
border: none !important;
outline: none !important;
background: Blue !important;
color: White !important;
font-family: "Fixedsys", "Courier New", "Courier", monospace !important;
/*
This font may not scale well, so several alternative sizes have been provided.
Please apply the one that best fints your resolution.
1em is the font-size defined in File > Preferences > Fonts > Normal
2em would be twice that and 0.5em would be half that
*/
font-size: 1em !important;
/* font-size: 16px !important; */
/* font-size: 12px !important; */
/* font-size: 10px !important; */
font-weight: normal !important;
font-style: normal !important;
line-height: 1em !important;
text-align: left !important;
text-decoration: none !important;
letter-spacing: 0px !important;
}
/* Form elements */
input, textarea, select {
border-top: 2px solid Black !important;
border-right: 1px solid silver !important;
border-bottom: 1px solid silver !important;
border-left: 2px solid Black !important;
background: White !important;
color: Black !important;
font-weight: normal !important;
}
input[type="text"], input[type="password"] {min-height: 1.2em !important;}
textarea {min-height: 4em !important;}
button, input[type="file"], input[type="submit"], input[type="button"], input[type="reset"], input[type="image"] {
border: medium outset !important;
padding: 2px 3px 2px 3px !important;
min-width: 2em !important;
height: 1.2em !important;
background: Silver !important;
color: Black !important;
text-align: center !important;
}
button:active, input[type="file"]:active, input[type="submit"]:active,
input[type="button"]:active, input[type="reset"]:active, input[type="image"]:active {
border: medium inset !important;
padding: 2px 2px 2px 4px !important;
}
input[type="radio"] {border: none !important;}
/* Headings */
h1, h2, h3, h4, h5, h6, th, caption {
font-weight: bold !important;
margin-top: 2em !important;
}
h1 {text-transform: uppercase !important;}
h1, h2 {letter-spacing: 5px !important;}
h3 {letter-spacing: 3px !important;}
h4 {letter-spacing: 2px !important;}
/* Nested lists */
ol > li {list-style: decimal !important;}
ol ol > li {list-style: upper-alpha !important;}
ol ol ol > li {list-style: lower-alpha !important;}
ol ol ol ol > li {list-style: lower-roman !important;}
ul > li {list-style: square !important;}
ul ul > li {list-style: circle !important;}
/* Links */
a, a[href], a[href]:link, span {font-weight: inherit !important;}
a[href]:visited {text-decoration: line-through !important;}
a[href], a[href]:link, a[href]:hover {text-decoration: underline !important;}
a[href]:active, a[href] img[alt]:active {text-decoration: none !important;}
/* Other */
kbd {
background: White !important;
color: Blue !important;
padding: 0px 2px !important;
}
hr {
height: 0px !important;
border-top: medium dashed White !important;
margin: 4px 0px 4px 0px !important;
}
@media screen, handheld, projection, tv {
/* Display document title on screen */
head, title {display: block !important;}
title {
margin-bottom: 1em !important;
padding: 8px !important;
background-color: White !important;
color: Blue !important;
text-align: center !important;
font-weight: bold !important;
}
body {padding-bottom: 3.5em !important;}
a[target]:before, *[lang]:before,*[lang]:after, img, iframe {
padding: 0px 2px 1px 2px !important;
background: White !important;
color: Blue !important;
font-size: smaller !important;
}
a[target]:before, *[lang]:before, img {margin-right: 4px !important;}
a[target]:before {content: "Win:" !important;}
a[target="_blank"]:before {content: "New:" !important;}
/* Display text language when given */
*[lang]:before {content: "Lng " attr(lang) ":" !important;}
*[lang]:after {
content: attr(lang) !important;
margin-left: 4px !important;
text-decoration: line-through !important;
}
body:after, body[lang]:after {
display: block !important;
clear: both !important;
content: "Navigate: [Z] and [X] — Elements: [Shift+arrow keys] — Shortcuts: [Ctrl+B]" !important;
position: fixed !important;
bottom: 0px !important;
margin-left: auto !important;
margin-right: auto !important;
border-top: thin solid Black !important;
border-left: thin solid Black !important;
border-right: thin solid Black !important;
padding: 2px !important;
width: 100% !important;
height: auto !important;
background: White !important;
color: Blue !important;
text-align: center !important;
font-size: smaller !important;
text-decoration: none !important;
}
img, iframe {
margin-left: 2px !important;
line-height: 1.5em !important;
}
iframe {content: "IFRAME" !important;}
iframe[longdesc] {content: attr(longdesc) !important;}
/* Change images to alternate text */
img {
display: none !important;
content: "IMG" !important;
}
img[alt], a[href] img {display: inline !important;}
input[type="image"] {content: "Submit" !important;}
img[alt], input[type="image"][alt] {content: attr(alt) !important;}
}
@media print {
* {
background: white !important;
color: Black !important;
background: White !important;
color: Black !important;
}
img {
display: none !important;
margin-right: 4px !important;
padding: 0px 2px 1px 2px !important;
outline: thin solid Black !important;
color: Gray !important;
background-color: White !important;
font-size: smaller !important;
}
a[href]:visited {text-decoration: underline !important;}
input[type="image"] {content: "Submit" !important;}
input[type="image"][alt] {content: attr(alt) !important;}
img[alt] {
display: inline !important;
content: attr(alt) !important;
margin-left: 2px !important;
line-height: 1.5em !important;
}
}
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Name: Nostalgia C64
Name: Nostalgia
Version: 1.10
Author: Opera Software ASA
Description: This style sheet attempts to simulate surfing the Web with a browser written in the early 1980s.
@@ -28,14 +28,10 @@ iframe {content: "IFRAME removed" !important;}
iframe[title] {content: attr(title) !important;}
iframe[longdesc] {content: attr(longdesc) !important;}
img {
filter: contrast(1000%);
max-width: 96px !important;
}
iframe, img[alt], img[title] {
iframe, img {
display: block;
padding: 0.2em !important;
max-width: 96px !important;
max-width: 25% !important;
max-height: none !important;
width: auto !important;
height: auto !important;
@@ -85,7 +81,7 @@ hr {
position: static !important;
float: none !important;
max-width: 100% !important;
max-width: 80vw !important;
min-width: 0px !important;
width: auto !important;
max-height: none !important;
@@ -109,7 +105,6 @@ html:after {
margin: 0em !important;
padding: 0em 0em 0em 2px !important;
content: "\2588" !important;
background: #352879 !important; /*Blue*/
color: #6C5EB5 !important; /*Light blue*/
text-decoration: blink !important;
@@ -167,14 +162,9 @@ title {
title:before {content: 'LOAD "' !important;}
title:after {white-space: pre-wrap; content: '",8 \A LOADING' !important;}
title:after {content: '",8\ALOADING' !important;}
table, caption, tr, thead, tfoot, tbody, th, td {
display: block !important;
text-align: left !important;
}
pre {white-space: pre-wrap !important;}
pre {white-space: -pre-wrap !important;}
input, textarea, select {max-width: 38em !important;}
+165
View File
@@ -0,0 +1,165 @@
@charset "utf-8";
/* Name: 1490680840
Emulate text browser
Copyright 2006 Opera Software */
* {
font-family: monospace !important;
font-size: 1em !important;
font-weight: normal !important;
font-style: normal !important;
text-align: left !important;
text-decoration: none !important;
letter-spacing: 0px !important;
line-height: 1em !important;
color: white !important;
background: #2A2F47 !important;
border: none !important;
outline: none !important;
width: auto !important;
min-width: 0px !important;
max-width: none !important;
height: auto !important;
min-height: 0px !important;
max-height: none !important;
position: static !important;
}
html::before, html::after, html *::before, html *::after {display: none !important;}
input, textarea, select {
font-weight: normal !important;
color: black !important;
background: white !important;
border-width: 2px 1px 1px 2px !important;
border-style: solid !important;
border-color: black silver silver black !important;
}
input[type="text"], input[type="password"] {min-height: 1.2em !important;}
textarea {min-height: 4em !important;}
button, input[type="file"], input[type="submit"], input[type="button"], input[type="reset"], input[type="image"] {
text-align: center !important;
color: black !important;
background: silver !important;
padding: 2px 3px 2px 3px !important;
border: medium outset !important;
min-width: 2em !important;
height: 1.2em !important;
}
button:active, input[type="file"]:active, input[type="submit"]:active, input[type="button"]:active, input[type="reset"]:active,
input[type="image"]:active {
padding: 2px 2px 2px 4px !important;
border: medium inset !important;
}
input[type="radio"] {border: none !important;}
h1, h2, h3, h4, h5, h6, th, caption {
font-weight: bold !important;
margin-top: 2em !important;
}
h1 {text-transform: uppercase !important;}
h1, h2 {letter-spacing: 5px !important;}
h3 {letter-spacing: 3px !important;}
h4 {letter-spacing: 2px !important;}
ol > li {list-style: decimal !important;}
ol ol > li {list-style: upper-alpha !important;}
ol ol ol > li {list-style: lower-alpha !important;}
ol ol ol ol > li {list-style: lower-roman !important;}
ul > li {list-style: square !important;}
ul ul > li {list-style: circle !important;}
a, a[href], a[href]:link, span {font-weight: inherit !important;}
a[href]:visited {text-decoration: line-through !important;}
a[href], a[href]:link, a[href]:hover {text-decoration: underline !important;}
a[href]:active, a[href] img[alt]:active {text-decoration: none !important;}
kbd {
color: #3366CC !important;
background: white !important;
padding: 0px 2px !important;
}
hr {
margin: 4px 0px 4px 0px !important;
border-top: medium dashed white !important;
height: 0px !important;
}
@media screen, handheld, projection, tv {
head, title {display: block !important;}
title {
font-weight: bold !important;
text-align: center !important;
color: #FFCC00 !important;
background-color: #000114 !important;
padding: 8px !important;
margin-bottom: 1em !important;
}
body {padding: 0 1em 3.5em !important;}
html a[target]:before, html *[lang]:before, html *[lang]:after, img, iframe {
font-size: smaller !important;
color: #FFCC00 !important;
background: #000114 !important;
padding: 0px 2px 1px 2px !important;
display: inline !important;
}
html a[target]:before, html *[lang]:before, img {margin-right: 4px !important;}
html a[target]:before {content: "Win:" !important;}
html a[target="_blank"]:before {content: "New:" !important;}
html *[lang]:before {content: "Lng " attr(lang) ":" !important;}
html *[lang]:after {
content: attr(lang) !important;
text-decoration: line-through !important;
margin-left: 4px !important;
}
html body:after, html body[lang]:after {
content: "Navigate: [Z] and [X] — Elements: [Shift+arrow keys] — Shortcuts: [Ctrl+B]" !important;
font-size: smaller !important;
text-align: center !important;
text-decoration: none !important;
color: #FFCC00 !important;
background: #000114 !important;
padding: 2px 0 !important;
margin-left: auto !important;
margin-right: auto !important;
border-top: thin solid black !important;
border-left: thin solid black !important;
border-right: thin solid black !important;
width: 100% !important;
height: auto !important;
clear: both !important;
position: fixed !important;
left: 0 !important;
bottom: 0px !important;
display: block !important;
}
img, iframe {
margin-left: 2px !important;
line-height: 1.5em !important;
}
iframe {content: "IFRAME" !important;}
iframe[longdesc] {content: attr(longdesc) !important;}
img {
content: "IMG" !important;
display: none !important;
}
img[alt], a[href] img {display: inline !important;}
input[type="image"] {content: "Submit" !important;}
img[alt], input[type="image"][alt] {content: attr(alt) !important;}
}
@media print {
* {
color: black !important;
background: white !important;
}
img {
font-size: smaller !important;
color: Gray !important;
background-color: white !important;
padding: 0px 2px 1px 2px !important;
margin-right: 4px !important;
outline: thin solid black !important;
display: none !important;
}
a[href]:visited {text-decoration: underline !important;}
input[type="image"] {content: "Submit" !important;}
input[type="image"][alt] {content: attr(alt) !important;}
img[alt] {
content: attr(alt) !important;
line-height: 1.5em !important;
margin-left: 2px !important;
display: inline !important;
}
}
+2 -2
View File
@@ -29,8 +29,8 @@
<body>
<h1>user_files</h1><p>
<a class="NORM" href="..">..</a><br>
[6.3K&nbsp;Nov&nbsp;25&nbsp;&nbsp;2003]&nbsp;&nbsp;<a class="EXEC" href="./Emulate_text_browser.css">Emulate_text_browser.css</a><br>
[5.0K&nbsp;Jan&nbsp;31&nbsp;&nbsp;2022]&nbsp;&nbsp;<a class="EXEC" href="./Nostalgia_C64.css">Nostalgia_C64.css</a><br>
[4.7K&nbsp;Nov&nbsp;25&nbsp;&nbsp;2003]&nbsp;&nbsp;<a class="EXEC" href="./Nostalgia.css">Nostalgia.css</a><br>
[5.6K&nbsp;Jun&nbsp;&nbsp;8&nbsp;&nbsp;2006]&nbsp;&nbsp;<a class="EXEC" href="./Textonly.css">Textonly.css</a><br>
<br><br>
</p>
<p>