-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·59 lines (49 loc) · 1.04 KB
/
styles.css
File metadata and controls
executable file
·59 lines (49 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
/* Granola Sync Plugin Styles */
.granola-sync-settings {
padding: 20px;
}
.granola-sync-settings h2 {
color: var(--text-accent);
margin-bottom: 20px;
}
.granola-sync-button {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
border-radius: 4px;
padding: 8px 16px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.2s ease;
}
.granola-sync-button:hover {
background-color: var(--interactive-accent-hover);
}
/* Status Bar Styles */
.granola-sync-status {
font-size: 12px;
padding: 2px 6px;
border-radius: 3px;
transition: all 0.3s ease;
}
.granola-sync-status.idle {
color: var(--text-muted);
}
.granola-sync-status.syncing {
color: var(--text-accent);
animation: pulse 1.5s ease-in-out infinite alternate;
}
.granola-sync-status.complete {
color: var(--text-success);
}
.granola-sync-status.error {
color: var(--text-error);
}
@keyframes pulse {
from {
opacity: 0.6;
}
to {
opacity: 1;
}
}