Files
Aaru/DiscImageChef.Server/dos.css

157 lines
2.3 KiB
CSS
Raw Normal View History

@font-face
{
2017-12-19 20:33:03 +00:00
font-family: 'VGAsquarePx';
src: url(int10h.org/vga_squarepx.eot);
src: url(int10h.org/vga_squarepx.eot?#iefix) format('embedded-opentype'),
url(int10h.org/vga_squarepx.woff2) format('woff2'),
url(int10h.org/vga_squarepx.woff) format('woff'),
url(int10h.org/vga_squarepx.ttf) format('truetype');
2017-12-19 20:33:03 +00:00
font-weight: normal;
font-style: normal;
2017-06-03 01:10:46 +01:00
}
2017-12-19 20:33:03 +00:00
/* define a black "stipple" background with DOS font */
2017-12-19 20:33:03 +00:00
body
{
background: radial-gradient(black 15%, transparent 16%) 0 0,
radial-gradient(black 15%, transparent 16%) 8px 8px,
radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 0 1px,
radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 8px 9px;
2017-12-19 20:33:03 +00:00
background-color: #282828;
background-size: 16px 16px;
color: #AAAAAA;
2017-12-19 20:33:03 +00:00
font-family: 'VGAsquarePx', serif;
font-size: 20pt;
margin: 0;
}
2017-12-19 20:33:03 +00:00
/* links are cyan, hover is bright yellow */
2017-12-19 20:33:03 +00:00
a
{
color: #00AAAA;
2017-12-19 20:33:03 +00:00
text-decoration: none;
}
2017-12-19 20:33:03 +00:00
a:hover
{ color: #FFFF55; }
2017-12-19 20:33:03 +00:00
/* headings and bold text are bright white */
2017-12-19 20:33:03 +00:00
h1, h2, h3, h4,
b, strong
{
color: #FFFFFF;
2017-12-19 20:33:03 +00:00
font-size: 1em;
font-style: normal;
font-weight: normal;
margin: 0;
}
2017-12-19 20:33:03 +00:00
/* italic text is green */
2017-12-19 20:33:03 +00:00
em, i
{
color: #00AA00;
2017-12-19 20:33:03 +00:00
font-style: normal;
}
2017-12-19 20:33:03 +00:00
/* define content areas */
2017-12-19 20:33:03 +00:00
header, main, footer
{
2017-12-19 20:33:03 +00:00
margin: 0 auto;
padding: 1em 0;
max-width: 800px;
}
2017-12-19 20:33:03 +00:00
/* use black on cyan text for header */
2017-12-19 20:33:03 +00:00
header
{
background-color: #00AAAA;
color: #000000;
}
2017-12-19 20:33:03 +00:00
/* insert the "April 1st" text */
header > h1::before
{ content: "Today is April 1, 2017!"; }
2017-12-19 20:33:03 +00:00
header > h1 img
{
display: block;
width: 300px;
2017-12-19 20:33:03 +00:00
}
header > form
{ }
2017-12-19 20:33:03 +00:00
header > form fieldset
{ border: none; }
2017-12-19 20:33:03 +00:00
/* use black on gray for navigation */
nav
{
background-color: #AAAAAA;
color: #000000;
2017-12-19 20:33:03 +00:00
}
nav a
{ color: #000000; }
2017-12-19 20:33:03 +00:00
nav img
{ display: none; }
2017-12-19 20:33:03 +00:00
nav span
{ }
2017-12-19 20:33:03 +00:00
nav > ul
{
2017-12-19 20:33:03 +00:00
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
nav > ul li
{
2017-12-19 20:33:03 +00:00
display: inline;
margin: 0 .5em;
}
/* use white on blue for main text */
2017-12-19 20:33:03 +00:00
main
{
background-color: #0000AA;
color: #AAAAAA;
}
2017-12-19 20:33:03 +00:00
main > nav
{ }
2017-12-19 20:33:03 +00:00
main > nav li::before
{ content: ">"; }
2017-12-19 20:33:03 +00:00
main > section
{ }
2017-12-19 20:33:03 +00:00
main div.third img
{ display: block; }
2017-12-19 20:33:03 +00:00
/* use black on brown text for footer */
2017-12-19 20:33:03 +00:00
footer
{
background-color: #AA5500;
color: #000000;
}
2017-12-19 20:33:03 +00:00
footer > nav
{ }
2017-12-19 20:33:03 +00:00
footer > section
{ }