-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.css
More file actions
45 lines (38 loc) · 926 Bytes
/
buttons.css
File metadata and controls
45 lines (38 loc) · 926 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
40
41
42
43
44
45
.treeButton {
background: #fff;
border: 2px solid #000;
color: #000;
transition: border 0.3s, color 0.3s, background-position 0.3s;
}
.treeButton:not(.bought):not(.pBought):hover {
background: #000;
border: 2px solid #fff;
color: #fff;
}
.bought {
color: lime;
background-color: black;
border: 2px solid lime;
}
.pBought {
background-repeat: no-repeat;
background-color: lime;
background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 99%, rgba(0, 255, 0, 1) 99%);
}
.pBought:hover {
background-image: linear-gradient(to right, rgba(0, 0, 0, 1) 99%, rgba(0, 255, 0, 1) 99%);
border: 2px solid white;
color: white;
}
.advButton {
border: 2px solid skyblue;
color: skyblue;
}
.nadvButton:not(.bought):not(.pBought):hover {
color: skyblue;
background-color: black;
border: 2px solid skyblue;
}
.emptyButton {
display: none;
}