-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
88 lines (73 loc) · 1.07 KB
/
style.css
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
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
input {
font-size: 16px;
}
h1 {
margin-bottom: 0px;
}
h5 {
margin-top: 0px;
}
.error {
color: rgb(255, 82, 82);
font-weight: bold;
}
.info {
color: rgb(97, 97, 97);
font-weight: bold;
}
#analysis {
text-align: left;
font-size: 20px;
margin-top: 30px;
margin-bottom: 20px;
}
.search-container {
margin-bottom: 20px;
text-align: left;
}
.spoof-note {
margin-bottom: 20px;
text-align: left;
}
.search-links {
text-align: left;
}
.red {
color:#ff0000;
}
.orange {
color: #cd8500;
}
.green {
color: #008b00;
}
.gray {
color: #7a7a7a;
}
.data-container {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
table {
width: 100%;
text-align: left;
border-collapse: collapse;
}
td {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
overflow-wrap: anywhere;
}
tr:nth-child(even) {
background-color: #e6e6e6;
}
.td-left {
font-weight: bold;
max-width: 110px;
}