-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (99 loc) · 1.71 KB
/
styles.css
File metadata and controls
116 lines (99 loc) · 1.71 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
body {
font-family: Arial, sans-serif;
width: 340px;
margin: 0;
background: #f3f6fb;
color: #14213d;
}
.container {
padding: 18px;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 1px;
font-size: 11px;
color: #64748b;
margin-bottom: 8px;
}
h1 {
font-size: 20px;
margin: 0 0 8px;
color: #1d4ed8;
}
.subtitle {
margin: 0 0 16px;
line-height: 1.5;
color: #475569;
}
.result-box {
margin-top: 16px;
padding: 14px;
border: 1px solid #dbeafe;
border-radius: 12px;
background: white;
min-height: 90px;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.placeholder {
margin: 0;
color: #64748b;
}
.check-button {
width: 100%;
padding: 12px;
background: #2563eb;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
}
.check-button:hover {
background: #1d4ed8;
}
.risk-header {
display: flex;
justify-content: space-between;
gap: 10px;
align-items: center;
flex-wrap: wrap;
margin-bottom: 10px;
}
.risk-badge {
padding: 6px 10px;
border-radius: 999px;
font-size: 12px;
font-weight: 700;
color: white;
}
.risk-badge.low {
background: #16a34a;
}
.risk-badge.medium {
background: #d97706;
}
.risk-badge.high {
background: #dc2626;
}
.risk-score {
font-size: 12px;
color: #475569;
font-weight: 600;
}
.url-line {
font-size: 12px;
line-height: 1.5;
word-break: break-word;
}
.reason-block strong {
display: block;
margin-top: 12px;
margin-bottom: 8px;
}
.reason-block ul {
margin: 0;
padding-left: 18px;
line-height: 1.6;
font-size: 13px;
}