-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
executable file
·123 lines (107 loc) · 1.96 KB
/
popup.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
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
121
122
123
@font-face {
font-family: 'NetlifeSans'; /* Use any name you want */
font-weight: 400;
font-style: normal;
src: url('/fonts/netlife-regular.woff2') format('woff2');
}
#header {
display: flex;
justify-content: center;
align-items: center;
}
body {
font-family: 'NetlifeSans', Arial, sans-serif; /* Replace 'Arial, sans-serif' with your fallback fonts */
font-size: 13px;
margin: 30px;
margin-top:15px;
background-color: #fff;
width: 340px;
}
h1 {
color: #000;
font-size: 24px;
font-weight:400;
line-height: 1.3;
margin:0;
}
table {
border-spacing: 5px 10px;
margin: 0;
padding: 0;
}
td {
border: none;
vertical-align: center;
word-wrap: break-word;
}
#headers-table tr td:first-of-type {
width: 20px;
}
#headers-table ul {
margin: 0;
}
.status {
width: 10px;
text-align: center;
}
.pass::before {
content: "";
display: inline-block;
width: 13px;
height: 13px;
border-radius: 50%;
background-color: #2EE57C;
}
.warn::before {
content: "";
display: inline-block;
width: 13px;
height: 13px;
border-radius: 50%;
background-color: #fff040;
}
.fail::before {
content: "";
display: inline-block;
width: 13px;
height: 13px;
border-radius: 50%;
background-color: #ff577f;
}
.tab {
display: flex;
justify-content: stretch;
padding-top: 24px;
}
/* Style the tab buttons */
.tab button {
appearance: none;
width: 100%;
background-color: inherit;
border:0;
border-bottom: 3px solid #E6E6E6;
outline: none;
cursor: pointer;
padding: 8px 0;
text-align: center;
margin-bottom: 20px;
margin-right: 5px;
transition: 0.3s;
font-size: 15px;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #fff;
border-color: #1E8928;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #fff;
border-color: #1E8928;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border-top: none;
}