-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
54 lines (50 loc) · 933 Bytes
/
Copy pathindex.css
File metadata and controls
54 lines (50 loc) · 933 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
46
47
48
49
50
51
52
53
54
.head {
background-color: #0071e3;
color: #fff;
padding: 8px;
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.stack {
height: calc(100% - 71px);
margin: 0;
margin-top: 12px;
overflow-y: auto;
border-radius: 12px;
padding: 0px;
}
.stack::-webkit-scrollbar {
display: none;
}
.stack .item {
width: 100%;
padding: 24px 16px;
border-radius: 12px;
/* background-color: #31beff; */
color: #fff;
font-size: 1rem;
margin-bottom: 12px;
transition: transform 0.2s;
}
.stack .item:last-child {
margin-bottom: 0px;
}
.stack .item.hide {
transform: scaleX(0) scaleY(0);
/* animation-name: item-hide; */
}
.stack .item.hide.init {
transform: none; /* No hiding for initialized items*/
}
.stack .item span {
background-color: rgba(0, 0, 0, 0.4);
padding: 4px 8px;
border-radius: 8px;
}
@keyframes item-hide {
from {
}
to {
transform: scaleX(0) scaleY(0);
}
}