Add layout styles/images for new website design.

Submitted by:  Emily Boyd
Sponsored by:  Google Summer of Code
This commit is contained in:
Murray Stokely 2005-10-04 05:49:13 +00:00
parent c78177cb41
commit e40b23f9b5
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=25809
33 changed files with 1255 additions and 0 deletions

30
en/layout/css/table.css Normal file
View file

@ -0,0 +1,30 @@
/*
FreeBSD.org - Table Styles
*/
.tblbasic {
background-color: #eee;
border-spacing: 0px;
border: 1px solid #CACACA;
border-bottom: 0;
border-collapse: collapse;
}
.tblbasic thead {
font-weight: bold;
}
.tblbasic th {
font-weight: bold;
padding: 8px;
border-bottom: 1px solid #D4D4D4;
}
.tblbasic td {
padding: 8px;
border-bottom: 1px solid #D4D4D4;
}
.tblbasic td+td, .tblbasic th+th {
border-left: 1px solid #D4D4D4;
}