Make <h1>, <h2>, <h3> tags red by default. This was the intention of
the original design as it matches with the header and footer, and most older pages achieve this with longer <font> tags, which can now be removed. Many newer pages have black subheadings, but this seems to be through omission rather than intention. Discussed on: freebsd-www@
This commit is contained in:
parent
f89105c9d5
commit
39822581ee
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=24811
1 changed files with 10 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD: www/en/freebsd.css,v 1.3 2005/02/04 17:33:30 ceri Exp $
|
||||
* $FreeBSD: www/en/freebsd.css,v 1.4 2005/05/08 16:07:44 murray Exp $
|
||||
*/
|
||||
|
||||
DIV.EXAMPLE P B {
|
||||
|
@ -34,7 +34,15 @@ DIV.EXAMPLE P B {
|
|||
color: #007a00;
|
||||
}
|
||||
|
||||
h3.red {
|
||||
h1 {
|
||||
color: #660000;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #660000;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #660000;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue