-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable-soft.css
More file actions
36 lines (35 loc) · 962 Bytes
/
table-soft.css
File metadata and controls
36 lines (35 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Soft table style */
table.soft {
border-spacing: 0px;}
.soft th, .soft td {
padding: 5px 30px 5px 10px;
border-spacing: 0px;
font-size: 90%;
margin: 0px;}
.soft th, .soft td {
text-align: left;
background-color: #e0e9f0;
border-top: 1px solid #f1f8fe;
border-bottom: 1px solid #cbd2d8;
border-right: 1px solid #cbd2d8;}
.soft tr.head th {
color: #fff;
background-color: #90b4d6;
border-bottom: 2px solid #547ca0;
border-right: 1px solid #749abe;
border-top: 1px solid #90b4d6;
text-align: center;
text-shadow: -1px -1px 1px #666666;
letter-spacing: 0.15em;}
.soft td {
text-shadow: 1px 1px 1px #ffffff;}
.soft tr.even td, .soft tr.even th {
background-color: #e8eff5;}
.soft tr.head th:first-child {
-webkit-border-top-left-radius: 5px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;}
.soft tr.head th:last-child {
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;}