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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
body
{
font-family: Arial;
}
.special
{
color: Red;
font-family: Comic Sans MS;
font-size: 20px;
font-style: italic;
}
.tabsView .body
{
height: 200px;
}
.tabsView .body div
{
padding: 15px;
height: 60px;
vertical-align: middle;
text-align: center;
}
.tabsView .body h3
{
text-align:center;
}
.tabsView td
{
border: solid 1px #0000A6;
border-top: none;
border-right: solid 2px #1E1ED2;
}
.tabsView th
{
cursor: pointer;
padding: 2px;
font-weight: normal;
font-style: italic;
color: #888;
border: solid 1px #bbb;
border-right: none;
background-color: #f8f8f8;
border-bottom: solid 1px #1E1ED2;
}
.tabsView
{
width: 500px;
border-collapse: collapse;
border: none;
margin-top: 20px;
}
.tabsView tr
{
border-right: solid 1px #bbb;
}
.tabsView th.header_true
{
cursor:default;
font-weight: bold;
border: solid 1px #0000A6;
border-right: solid 2px #1E1ED2;
border-bottom: solid 1px #eee;
color: #0000A6;
background-color: #fff;
}
|