58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
div {
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
margin:20px;
|
|
}
|
|
|
|
table {
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
color:#666;
|
|
font-size:14px;
|
|
text-shadow: 1px 1px 0 #fff;
|
|
margin:20px;
|
|
border:#ccc 1px solid;
|
|
|
|
-moz-border-radius:3px;
|
|
-webkit-border-radius:3px;
|
|
border-radius:3px;
|
|
}
|
|
table th {
|
|
padding:21px 25px 22px 25px;
|
|
border-top:1px solid #fafafa;
|
|
border-bottom:1px solid #e0e0e0;
|
|
border-left: 1px solid #e0e0e0;
|
|
font-weight: bold;
|
|
}
|
|
table th:first-child {
|
|
text-align: left;
|
|
padding-left:20px;
|
|
border-left: 0;
|
|
}
|
|
table tr {
|
|
text-align: center;
|
|
padding-left:20px;
|
|
}
|
|
table td:first-child {
|
|
text-align: left;
|
|
padding-left:20px;
|
|
border-left: 0;
|
|
}
|
|
table td {
|
|
padding:18px;
|
|
border-top: 1px solid #ffffff;
|
|
border-bottom:1px solid #e0e0e0;
|
|
border-left: 1px solid #e0e0e0;
|
|
}
|
|
table tr:last-child td {
|
|
border-bottom:0;
|
|
}
|
|
table tr:last-child td:first-child {
|
|
-moz-border-radius-bottomleft:3px;
|
|
-webkit-border-bottom-left-radius:3px;
|
|
border-bottom-left-radius:3px;
|
|
}
|
|
table tr:last-child td:last-child {
|
|
-moz-border-radius-bottomright:3px;
|
|
-webkit-border-bottom-right-radius:3px;
|
|
border-bottom-right-radius:3px;
|
|
}
|