forked from Khanba22/gforms-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (46 loc) · 992 Bytes
/
styles.css
File metadata and controls
52 lines (46 loc) · 992 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
.gemini-forms-helper {
position: fixed;
top: 20px;
right: 20px;
width: 300px;
background-color: white;
border-radius: 8px;
padding: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 9999;
font-family: 'Google Sans', Arial, sans-serif;
transition: opacity 0.5s ease;
}
.gemini-forms-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.gemini-forms-header img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.gemini-forms-header span {
font-size: 16px;
font-weight: 500;
color: #444;
}
.gemini-forms-status {
font-size: 14px;
margin-bottom: 15px;
color: #2e7d32;
}
.gemini-forms-progress {
width: 100%;
height: 4px;
background-color: #f1f1f1;
border-radius: 2px;
overflow: hidden;
}
.gemini-forms-progress-bar {
height: 100%;
width: 0;
background-color: #8e24aa;
transition: width 0.5s ease;
}