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
|
body{
background-color: white;
}
#boxcolumn{
position:relative;
width: 435px;
height: auto;
margin-left:10px;
margin-top:70px;
float: left;
}
.box{
width: 75px;
height: 75px;
float: left;
margin: 4px;
overflow:hidden;
background-repeat: no-repeat;
background-size: 100%;
}
.box2{
width: 75px;
height: 75px;
float: left;
margin: 4px;
overflow:hidden;
background-repeat: no-repeat;
background-size: 100%;
}
#mostUsed{
overflow: auto;
width:100%;
}
#lessUsed{
overflow: auto;
width: 100%;
height: auto;
}
#buttonContainer{
width:420px;
background-image:url(../img/template_show_button.png);
background-repeat:no-repeat;
background-position:relative;
text-align: center;
z-index:-1;
height:30px;
}
#buttonContainer a{
position:relative;
top:5px;
display:block;
color:#000;
height:10px;
font-size: 1.4em;
}
.showhide{
color:#000;
text-decoration: none;
}
.showhide:hover{
color:#000;
text-decoration: none;
}
|