32 lines
494 B
CSS
Executable file
32 lines
494 B
CSS
Executable file
body {
|
|
color: white;
|
|
font-family: 'Times New Roman', serif;
|
|
background: black;
|
|
max-width: 800px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Arial', sans-serif;
|
|
color: green;
|
|
text-shadow: 2px 2px grey;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'Arial', sans-serif;
|
|
color: orange;
|
|
text-shadow: 2px 2px grey;
|
|
}
|
|
|
|
a:link {
|
|
font-family: 'Courier New', monospace;
|
|
color: yellow;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:visited {
|
|
font-family: 'Courier New', monospace;
|
|
color: grey;
|
|
font-weight: bold;
|
|
}
|