97ce479c50
Specified with CSS color attribute
38 lines
488 B
CSS
38 lines
488 B
CSS
body {
|
|
font-style: italic;
|
|
font-family: "Foo Bar";
|
|
}
|
|
h1 {
|
|
font-style: italic;
|
|
font-family: "Foo Bar";
|
|
}
|
|
h2 {
|
|
font-style: italic;
|
|
font-family: "Foo Bar";
|
|
}
|
|
div {
|
|
font-style: italic;
|
|
font-family: "Foo Bar";
|
|
}
|
|
p {
|
|
font-style: italic;
|
|
font-family: "Foo Bar";
|
|
}
|
|
.red {
|
|
color: #ff0000;
|
|
}
|
|
.green {
|
|
color: #00ff00;
|
|
}
|
|
.blue {
|
|
color: #0000ff;
|
|
}
|
|
.olive {
|
|
color: #808000;
|
|
}
|
|
.orangered {
|
|
color: #ff4500;
|
|
}
|
|
.palegreen {
|
|
color: #98fb98;
|
|
}
|