Update
This commit is contained in:
parent
56bfbd2c10
commit
13c0261dae
2 changed files with 91 additions and 0 deletions
|
@ -47,6 +47,7 @@ function load()
|
||||||
fl.innerHTML = "chad version";
|
fl.innerHTML = "chad version";
|
||||||
|
|
||||||
placeCSS("gay","style_gay.css");
|
placeCSS("gay","style_gay.css");
|
||||||
|
placeCSS("90s","style_90s.css");
|
||||||
placeCSS("unix","style_unix.css");
|
placeCSS("unix","style_unix.css");
|
||||||
placeCSS("dark","style_dark.css");
|
placeCSS("dark","style_dark.css");
|
||||||
placeCSS("fancy","style_fancy.css");
|
placeCSS("fancy","style_fancy.css");
|
||||||
|
|
90
style_90s.css
Normal file
90
style_90s.css
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
body
|
||||||
|
{
|
||||||
|
max-width: 700px;
|
||||||
|
margin: 80px auto;
|
||||||
|
border: 4px solid #111;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
font-family: sans-serif;
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
p
|
||||||
|
{
|
||||||
|
line-height: 17px;
|
||||||
|
margin: 15px 0;
|
||||||
|
border-top: 2px solid white;
|
||||||
|
border-bottom: 2px solid #666;
|
||||||
|
border-left: 5px solid #855;
|
||||||
|
border-right: 5px solid #855;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2
|
||||||
|
{
|
||||||
|
margin: 10px 0 5px;
|
||||||
|
font-family: serif;
|
||||||
|
border: 10px solid #818;
|
||||||
|
background-color: #aba;
|
||||||
|
text-align: center;
|
||||||
|
color: #300;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3
|
||||||
|
{
|
||||||
|
margin: 5px 0 5px;
|
||||||
|
font-family: serif;
|
||||||
|
border: 5px solid #881;
|
||||||
|
background-color: #aba;
|
||||||
|
text-align: center;
|
||||||
|
color: #300;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code
|
||||||
|
{
|
||||||
|
background-color: #fcfcfc;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre
|
||||||
|
{
|
||||||
|
font-size: 15px;
|
||||||
|
max-width: 800px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
table
|
||||||
|
{
|
||||||
|
border-spacing: 0px;
|
||||||
|
margin: 5px;
|
||||||
|
border-top: 1px solid white;
|
||||||
|
border-right: 1px solid white;
|
||||||
|
border-bottom: 1px solid #444;
|
||||||
|
border-left: 1px solid #444;
|
||||||
|
font-size: 15px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th
|
||||||
|
{
|
||||||
|
border-top: 2px solid white;
|
||||||
|
border-right: 2px solid white;
|
||||||
|
border-bottom: 2px solid #444;
|
||||||
|
border-left: 2px solid #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
th
|
||||||
|
{
|
||||||
|
background-color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
a
|
||||||
|
{
|
||||||
|
color: #00c;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-style: wavy;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dead
|
||||||
|
{
|
||||||
|
color: #d00;
|
||||||
|
}
|
Loading…
Reference in a new issue