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{
background-color: white;
}
#menucolumn{
float: left;
width: 161px;
background-color: #EEE;
margin: 10px;
margin-left: 6.6em;
margin-top: 5em;
border: 1px solid #D0D0D0;
border-bottom: 0px;
height: 250px;
}
#boxcolumn{
width: 435px; // total width 395
height: auto;
margin: 40px;
margin-top:70px;
float: left;
}
.box{
width: 75px;
height: 75px;
float: left;
border: 2px solid black;
border-radius: 6px 6px 6px 6px;
-moz-border-radius: 6px 6px 6px 6px;
-webkit-border-radius: 6px 6px 6px 6px;
margin: 4px;
overflow:hidden;
background-repeat: no-repeat;
background-size: 100%;
}
.box2{
width: 75px;
height: 75px;
float: left;
border: 2px solid gray;
border-radius: 6px 6px 6px 6px;
-moz-border-radius: 6px 6px 6px 6px;
-webkit-border-radius: 6px 6px 6px 6px;
margin: 4px;
overflow:hidden;
background-color: lightgray;
}
#mostUsed{
overflow: auto;
width:100%;
}
#lessUsed{
overflow: auto;
width: 100%;
height: auto;
}
#buttonContainer{
width:100%;
height: 80px;
border-top: 3px solid black;
border-radius: 8px 8px 8px 8px;
text-align: center;
}
#buttonContainer a{
size: 20em;
padding: 10px;
}
.showhide{
color:#000;
text-decoration: none;
}
.showhide:hover{
color:#000;
text-decoration: none;
}
|