1
1
<!DOCTYPE html>
2
- < html >
2
+ < html lang =" en " >
3
3
< head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
4
6
< style >
5
7
body {
6
8
font-family : Arial, sans-serif;
7
- width : 300px ;
8
- padding : 10px ;
9
+ width : 320px ; /* Increased width for more content space */
10
+ padding : 20px ;
11
+ background-color : # f8f9fa ; /* Light background color */
12
+ border-radius : 8px ; /* Rounded corners */
13
+ box-shadow : 0 0 10px rgba (0 , 0 , 0 , 0.1 ); /* Subtle shadow for depth */
14
+ margin : auto; /* Centering the container */
15
+ margin-top : 30px ; /* Top margin for spacing */
9
16
}
17
+
18
+ h3 {
19
+ font-size : 18px ;
20
+ text-align : center; /* Center the heading */
21
+ margin-bottom : 20px ; /* Spacing below the heading */
22
+ color : # 333 ;
23
+ }
24
+
25
+ # analyzeBtn {
26
+ display : block; /* Makes the button block-level */
27
+ width : 100% ; /* Button fills the full width */
28
+ padding : 12px ; /* Added padding for larger button size */
29
+ background-color : # 007bff ; /* Bootstrap-style primary blue */
30
+ color : white; /* White text color */
31
+ border : none; /* Removes default button borders */
32
+ border-radius : 5px ; /* Rounded corners */
33
+ font-size : 16px ; /* Increased font size */
34
+ cursor : pointer; /* Pointer cursor on hover */
35
+ transition : background-color 0.3s ease; /* Smooth color change */
36
+ }
37
+
38
+ # analyzeBtn : hover {
39
+ background-color : # 0056b3 ; /* Darker blue on hover */
40
+ }
41
+
10
42
# status {
11
43
font-size : 18px ;
12
44
font-weight : bold;
13
- margin : 10 px 0 ;
14
- padding : 10 px ;
45
+ margin : 15 px 0 ;
46
+ padding : 12 px ;
15
47
text-align : center;
48
+ background-color : # e9ecef ;
49
+ border-radius : 4px ;
16
50
}
17
- # conclusion {
51
+
52
+ # conclusion , # details {
18
53
font-size : 14px ;
19
54
color : # 333 ;
20
55
margin-top : 10px ;
56
+ text-align : center;
57
+ }
58
+
59
+ # details {
60
+ color : rgb (41 , 41 , 226 );
21
61
}
22
62
</ style >
23
63
</ head >
24
64
< body >
25
- < h3 > Domain Safety Analyzer</ h3 >
65
+ < h3 > FraudFree - Domain Safety Analyzer</ h3 >
26
66
< button id ="analyzeBtn "> Analyze</ button >
27
67
< div id ="results ">
28
68
< div id ="status "> </ div >
29
69
< div id ="conclusion "> </ div >
70
+ < div id ="details "> </ div >
30
71
</ div >
31
72
< script src ="popup.js "> </ script >
32
73
</ body >
33
- </ html >
74
+ </ html >
0 commit comments