You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
397 B
CSS
27 lines
397 B
CSS
3 years ago
|
html,
|
||
|
body {
|
||
|
margin: 0;
|
||
|
font-family: 'Courier New';
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
background-color: rgb(180, 180, 180) ;
|
||
|
}
|
||
|
|
||
|
|
||
|
.highlight {
|
||
|
background-color: rgba(0, 150, 255, 0.6);
|
||
|
text-shadow: 0 0 0px black;
|
||
|
}
|
||
|
|
||
|
|
||
|
.lowlight {
|
||
|
background-color: rgba(0, 0, 255, 0);
|
||
|
color: black;
|
||
|
text-shadow: 0 0 0px black;
|
||
|
}
|
||
|
|
||
|
|
||
|
.ghost {
|
||
|
color: black;
|
||
|
text-shadow: 0 0 0px black;
|
||
|
}
|