2021-08-29 23:22:54 +00:00
|
|
|
.odd {
|
|
|
|
background-color: rgb(255, 167, 167);
|
2022-03-14 19:37:27 +00:00
|
|
|
font-family: Verdana, "DejaVu Sans", sans-serif;
|
2021-08-29 23:22:54 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 02:42:44 +00:00
|
|
|
.adjust-font-size {
|
2021-08-29 23:22:54 +00:00
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#two {
|
|
|
|
color: #0000ff;
|
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
2022-07-10 09:22:32 +00:00
|
|
|
/*
|
|
|
|
In the id selector 'four' below, we could have also
|
|
|
|
added a rule to set the font size to 24px.
|
|
|
|
|
|
|
|
However, since the elements 'Number 3' and 'Number 4'
|
|
|
|
in the HTML file share the same font size, we reused
|
|
|
|
the 'adjust-font-size' class above to help reduce
|
|
|
|
duplicate code.
|
|
|
|
*/
|
2021-08-29 23:22:54 +00:00
|
|
|
#four {
|
|
|
|
background-color: hsl(120, 100%, 75%);
|
|
|
|
font-weight: bold;
|
2022-01-09 16:00:23 +00:00
|
|
|
}
|