-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.css
More file actions
98 lines (86 loc) · 1.52 KB
/
Copy pathmodal.css
File metadata and controls
98 lines (86 loc) · 1.52 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
90
91
92
93
94
95
96
97
98
.zenn-mute-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 999999;
animation: zenn-mute-fade-in 0.2s ease-out;
}
@keyframes zenn-mute-fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.zenn-mute-modal {
background: #ffffff;
border-radius: 12px;
padding: 32px 40px;
max-width: 440px;
width: 90%;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: zenn-mute-slide-up 0.3s ease-out;
}
@keyframes zenn-mute-slide-up {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.zenn-mute-modal-icon {
font-size: 48px;
margin-bottom: 16px;
}
.zenn-mute-modal-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 12px 0;
}
.zenn-mute-modal-message {
font-size: 15px;
color: #4a4a4a;
margin: 0 0 24px 0;
line-height: 1.6;
}
.zenn-mute-modal-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.zenn-mute-btn {
padding: 10px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.15s ease;
}
.zenn-mute-btn-primary {
background: #3ea8ff;
color: #ffffff;
}
.zenn-mute-btn-primary:hover {
background: #2b9cf0;
}
.zenn-mute-btn-secondary {
background: #f0f0f0;
color: #4a4a4a;
}
.zenn-mute-btn-secondary:hover {
background: #e0e0e0;
}