-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.css
58 lines (50 loc) · 1.01 KB
/
popup.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
.loading {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 10px;
height: 10px;
animation: spin 2s linear infinite;
transform: translate(-50%, -50%);
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body {
font-family: Arial, sans-serif;
}
input, button, a {
display: block;
margin: 10px 0;
width: 100px;
max-width: 300px; /* Ensures elements don't stretch too wide */
word-wrap: break-word; /* Ensures long words or URLs break and wrap */
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Add this to popup.css */
#geminiLink {
display: inline-block;
transition: color 0.3s, transform 0.3s;
}
#geminiLink.animate {
color: red; /* Highlight the link in red */
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}