Project

General

Profile

1
/* Tab Content - menucool.com */
2
ul.tabs
3
{
4
    padding: 10px 0px 0px 20px;
5
    margin:0;
6
    font-size: 0;
7
    list-style-type: none;
8
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
9
}
10
        
11
ul.tabs li
12
{
13
    display: inline;
14
    margin: 0;/*no distance between tabs*/
15
    background: White;
16
    margin-left: -1px;
17
    margin-right:2px;
18
}
19
        
20
ul.tabs li a
21
{
22
    font: normal 12px OpenSansRegular;
23
    text-decoration: none;
24
    position: relative;
25
    padding: 7px 18px;
26
    color: #fff;
27
    outline:none;
28
    background:#44B1EC;
29
    border-top:1px solid #F9F9F9;
30
    border-left:1px solid #F9F9F9;
31
    border-right: 1px solid #F9F9F9;
32
    border:1px solid #cacaca;
33
    border-right:0;
34
}
35

    
36
/*Note: IE8 and earlier doesn't support li:last-child. You have to add another class to the last tab (LI) and specify its border-right as below.*/
37
ul.tabs li:last-child a
38
{
39
    border-right:1px solid #CCC;
40
}
41
  
42
        
43
ul.tabs li a:hover
44
{
45
    color: #fff;
46
    background:#5E8AC7;
47
    background:#8ADFF7;
48
    cursor: pointer;
49
}
50
        
51
ul.tabs li.selected a, ul.tabs li.selected a:hover
52
{
53
    top: 0px;
54
    font-weight:normal;
55
    background: transparent;
56
    border:1px solid #cacaca;
57
    border-bottom: 1px solid #fafafa;
58
    color: #000;
59
    cursor: pointer;
60
}
61
        
62
        
63
ul.tabs li.selected a:hover
64
{
65
    text-decoration: none;
66
}
67

    
68
div.tabcontents
69
{
70
    border-top: 1px solid #CCC; padding: 30px 10px;
71
}
72

    
73
div .claimsearchtabs{
74
	clear:both;
75
	padding-top: 20px;
76
}
(4-4/6)