-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (105 loc) · 2.18 KB
/
styles.css
File metadata and controls
120 lines (105 loc) · 2.18 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
width: 480px;
padding: 14px;
background: #f7f8fa;
color: #222;
}
h2 {
margin: 0 0 8px 0;
font-size: 17px;
font-weight: 600;
color: #0f1724;
}
#meta {
font-size: 12px;
color: #6b7280;
margin-bottom: 10px;
word-break: break-all;
}
#list {
border-radius: 8px;
border: 1px solid #e6e9ee;
padding: 8px;
min-height: 48px;
max-height: 220px;
overflow: auto;
background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
box-shadow: 0 1px 2px rgba(16,24,40,0.03);
}
.email-row {
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;
padding:8px;
border-radius:6px;
transition: background .12s ease, transform .08s ease;
margin-bottom:6px;
}
.email-row:hover {
background: rgba(14,39,86,0.03);
transform: translateY(-1px);
}
.email-text {
font-size: 13px;
word-break: break-all;
flex: 1 1 auto;
color: #0b1220;
font-weight: 500;
padding-right: 8px;
}
.btn {
padding:6px 8px;
font-size:12px;
line-height:1;
border-radius:6px;
border: 1px solid rgba(15,23,42,0.08);
background: #fff;
color: #0b1220;
cursor: pointer;
box-shadow: 0 1px 0 rgba(16,24,40,0.03);
transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
min-width:54px;
}
.btn + .btn {
background: linear-gradient(180deg,#2563eb 0%, #1e40af 100%);
color: #fff;
border: none;
}
.btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(16,24,40,0.08);
}
.btn:active {
transform: translateY(0);
}
.btn + .btn:hover {
filter: brightness(1.04);
box-shadow: 0 6px 18px rgba(37,99,235,0.18);
}
#actions {
margin-top: 12px;
display:flex;
gap:8px;
align-items:center;
}
#refreshBtn {
padding:8px 12px;
font-size:13px;
border-radius:8px;
border: 1px solid rgba(15,23,42,0.06);
background: linear-gradient(180deg,#ffffff 0%, #f3f4f6 100%);
cursor: pointer;
box-shadow: 0 1px 2px rgba(16,24,40,0.03);
}
#footer {
margin-top:10px;
font-size:11px;
color:#6b7280;
}
@media (max-width: 420px) {
body { width: 94vw; padding: 12px; }
.email-text { font-size: 13px; }
.btn { padding:6px 8px; font-size:12px; }
}