-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (72 loc) · 1.2 KB
/
style.css
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
76
77
78
79
80
81
82
83
84
ul {
text-align: center;
list-style-type: none;
margin: 50px auto 50px auto;
padding: 0;
}
li {
display: inline-block;
direction: rtl;
margin: 0 30px;
padding: 10px 50px;
font-size: 20px;
border-width: 2px;
border-style: solid;
border-radius: 35px;
color: black;
cursor: pointer;
}
#blue-item {
border-color: #64B5F6;
}
#blue-item.clicked {
background-color: #64B5F6;
color: white;
}
#green-item {
border-color: #66bb6a;
}
#green-item.clicked {
background-color: #66bb6a;
color: white;
}
#lime-item {
border-color: #afb42b;
}
#lime-item.clicked {
background-color: #afb42b;
color: white;
}
#orange-item {
border-color: #ffa726;
}
#orange-item.clicked {
background-color: #ffa726;
color: white;
}
[class*="clicked"] span {
color: white;
}
.amount {
color: gray;
}
/* .card-panel {
opacity: 1;
height: 200px;
transition: opacity 2s, height 0s;
}
.animation {
animation-name: cardHide;
animation-duration: .5s;
animation-fill-mode: forwards;
}
@keyframes cardHide{
0% {
opacity: 1;
height: auto;
}
100% {
opacity: 0;
height: 0;
}
} */