forked from yeswehack/yeswehack_vdp_finder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
153 lines (120 loc) · 2.07 KB
/
popup.css
File metadata and controls
153 lines (120 loc) · 2.07 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
:root {
--background-color: #000;
--green: #0f0;
--red: #f00;
--orange: #f50;
--status-color: #ddd;
}
* {
box-sizing: border-box;
}
body {
width: 480px;
box-sizing: border-box;
margin: 0;
overflow-y: auto;
overflow-x: hidden;
padding: 0 25px;
font-weight: 100;
font-family: monospace;
color: var(--status-color);
background: var(--background-color);
border: 6px inset var(--status-color);
}
main {
display: flex;
flex-direction: column;
align-items: stretch;
}
main>div {
margin-bottom: 10px;
padding: 10px;
}
/* BANNER */
#top_logo {
display: inline-block;
width: 60%;
margin: 10px auto;
}
#top_logo .logo_color {
fill: var(--status-color);
}
/* LAST UPDATE */
#btn-refresh-all{
user-select: none;
}
#btn-refresh-all.active {
cursor: not-allowed;
color: #ddd;
pointer-events: none;
}
#last-update:before{
content: "Last update: "
}
#last-update{
margin-right: 10px;
}
/* PROGRAMS LIST */
#program-info-title.lax{
font-size: 1em;
}
ul {
list-style-type: square;
margin: 0;
padding-left: 5px;
}
.pgm-name {
display: inline-block;
color: var(--status-color);
font-size: 1.2em;
margin-bottom: 10px;
}
/**/
#domain-host {
color: white;
}
#security-txt-link{
text-decoration: none;
}
h1,
h2 {
margin: 0;
margin-bottom: 10px;
}
.title {
text-align: center;
text-shadow:
-1px -1px 0 var(--status-color),
1px -1px 0 var(--status-color),
-1px 1px 0 var(--status-color),
1px 1px 0 var(--status-color),
0 0 5px #000,
0 0 5px #000,
0 0 5px #000;
color: black;
}
#security-txt-content {
padding: 10px 0;
overflow-x: auto;
color: white;
background: #111;
}
a {
color: var(--status-color);
}
/* class utils */
.bold {
font-weight: bold;
}
.hidden {
display: none;
}
.text-center {
text-align: center;
}
.dot-border {
border: 1px dotted var(--status-color);
}
.double-border {
border: 3px double var(--status-color);
}