-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (66 loc) · 1.04 KB
/
styles.css
File metadata and controls
75 lines (66 loc) · 1.04 KB
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
/* styles.css */
.button-container {
display: flex;
gap: 10px;
align-items: flex-start;
}
.bookmark-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.premium-checkbox {
margin-right: 5px;
width: 20px;
height: 20px;
}
@keyframes clickAnimation {
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}
.click-animation {
animation: clickAnimation 0.2s ease-in-out;
}
.spinner {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
display: none;
z-index: 2;
}
.spinner::after {
content: "";
display: block;
width: 100%;
height: 100%;
border: 2px solid currentColor;
border-top-color: transparent;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
.spinner.show {
display: block;
}
.button-text {
position: relative;
z-index: 1;
}
/* Add spinner animation */
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}