button.css
607 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
37
38
39
.button-bar {
margin-top: 1em;
}
.button {
border: none;
margin-left: 5px;
background-color: transparent;
background-repeat: no-repeat;
background-position: 0 0;
padding-left: 25px;
padding-right: 2px;
float: left;
display: block;
height: 24px;
}
.button, .button:visited {
color: black;
text-decoration: none;
border: 1px solid transparent;
}
.button:hover {
border: 1px solid black;
background-color: #eee;
}
.find, .find:visited {
opacity: 0.7;
}
.find:hover {
border: 1px solid transparent;
background-color: transparent;
opacity: 1.0;
cursor: pointer;
}