Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-doc
Path: blob/main/website/themes/beastie/static/css/table.css
18096 views
1
/*
2
* FreeBSD.org - Table Styles
3
*
4
* $FreeBSD$
5
*/
6
7
.tblbasic {
8
background-color: #eee;
9
border-spacing: 0px;
10
border: 1px solid #CACACA;
11
border-bottom: 0;
12
border-collapse: collapse;
13
}
14
15
.tblbasic thead {
16
font-weight: bold;
17
}
18
19
.tblbasic th {
20
font-weight: bold;
21
padding: 8px;
22
border-bottom: 1px solid #D4D4D4;
23
}
24
25
.tblbasic td {
26
padding: 8px;
27
border-bottom: 1px solid #D4D4D4;
28
}
29
30
.tblbasic td+td, .tblbasic th+th {
31
border-left: 1px solid #D4D4D4;
32
}
33
34
.tableblock {
35
margin: 0;
36
}
37
38
.tblDownload ul {
39
list-style: none;
40
padding: 0 10px;
41
}
42
43