forked from dohun0310/Comentor-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (78 loc) · 1.48 KB
/
styles.css
File metadata and controls
89 lines (78 loc) · 1.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#comentor-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 999999;
justify-content: center;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#comentor-overlay.comentor-visible {
display: flex;
}
.comentor-popup {
background: white;
border-radius: 16px;
padding: 32px 40px;
max-width: 400px;
width: 90%;
text-align: center;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
animation: comentor-popup-appear 0.2s ease-out;
}
@keyframes comentor-popup-appear {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
.comentor-popup-title {
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 16px 0;
}
.comentor-popup-message {
font-size: 14px;
color: #666;
line-height: 1.6;
margin: 0 0 24px 0;
}
.comentor-popup-buttons {
display: flex;
gap: 12px;
justify-content: center;
}
.comentor-btn {
padding: 12px 32px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
border: none;
min-width: 120px;
}
.comentor-btn-cancel {
background: white;
color: #4A7DFF;
border: 1px solid #4A7DFF;
}
.comentor-btn-cancel:hover {
background: #f5f8ff;
}
.comentor-btn-edit {
background: #4A7DFF;
color: white;
}
.comentor-btn-edit:hover {
background: #3a6ae8;
}