-
Notifications
You must be signed in to change notification settings - Fork 192
/
style.css
132 lines (113 loc) · 1.97 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
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
html{
background: #f6f8fa!important
}
h2{
color: #2f2f2f
}
.main{
margin: auto;
margin-top: 50px;
max-width: 1000px;
}
#checkboxesForm{
display: flex;
flex-wrap: wrap;
}
#checkboxesForm .feature{
flex: 1 20%;
padding: 2px;
}
input[type=checkbox]:not(:first-child){
margin-left: 15px;
}
input[type=checkbox], #checkboxesForm label{
cursor: pointer;
}
#payloads{
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
.payload{
flex: 1 0 25%;
background: #e2e2e2;
padding:10px;
border-radius:5px;
margin: 5px;
position:relative;
padding-left: 30px;
display:inline-block;
max-width: 500px;
}
.payload .tags{
max-width: 400px;
}
.payload .tags span{
background: #b3bfbf;
font-size:13px;
border-radius:3px;
padding: 2px 4px;
margin: 2px;
pointer-events: none;
display: inline-block;
}
.payload .counter{
position:absolute;
top:0;
left:0;
background: #adadad;
font-size: 12px;
padding: 4px;
border-radius: 5px;
color:white;
font-weight: bold;
pointer-events: none;
}
.payload .pocs{
position:absolute;
top:0;
right:0;
margin:0;
padding:0;
/* float: right; */
}
.payload .pocs span{
margin-left: 5px;
background: #adadad;
padding: 4px;
border-radius: 5px;
text-decoration: none;
cursor:pointer;
font-size: 10px;
color:white;
font-weight: bold;
float: right;
}
.payload .poc-reflected{
right: 100px;
}
.payload .poc-dom::before{
content: "PoC DOM"
}
.payload .poc-reflected::before{
content: "PoC Reflected"
}
.subtitle{
color: black;
display: inline-block;
opacity: 0.6;
height: 30px;
margin-top:-20px;
transform: scale(0.8);
transform-origin: left center;
}
.repo-link{
color: black;
text-decoration: none;
vertical-align: middle;
font-size: 22px;
}
.subtitle span{
vertical-align: middle;
margin-left: 10px;
}