forked from tauh33dkhan/XSStrike-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
104 lines (91 loc) · 1.6 KB
/
popup.css
File metadata and controls
104 lines (91 loc) · 1.6 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
body {
font-family: Helvetica, Ubuntu, Arial, sans-serif;
width: 300px;
}
* {
box-sizing: border-box;
}
.container {
padding: 1em;
}
h1{
text-align: center;
}
p {
text-align: center;
}
p {
font-size: 15px;
}
.description {
opacity: 0.6;
}
.header{
width: 80%;
height: 33px;
font-size: 15px;
text-align: left;
border-width: 2px;
padding-left: 6px;
}
.button.saveHeader{
border-radius: 7px;
width: 20%;
height: 35px;
border-width: 2px;
background: #ff4a4a;
text-align: center;
font-size: 15px;
font-weight: bold;
color: #fff;
cursor: pointer;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-webkit-transition: all 250ms;
transition: all 250ms;
}
.button.xsstrike-crawl{
border-radius: 7px;
width: 100%;
padding: 1em 2em;
background: #ff4a4a;
text-align: center;
font-size: 13px;
font-weight: bold;
color: #fff;
cursor: pointer;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-webkit-transition: all 250ms;
transition: all 250ms;
}
.button.xsstrike-scan{
border-radius: 7px;
width: 100%;
padding: 1em 2em;
background: #2e7fa6;
text-align: center;
font-size: 13px;
font-weight: bold;
color: #fff;
cursor: pointer;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-webkit-transition: all 250ms;
transition: all 250ms;
}
.button:hover {
box-shadow: none;
}
.logo {
display: block;
margin: auto;
}
.issue {
text-align: center;
display: block;
margin: 20px auto 0 auto;
}
.title{
color: #ff4a4a;
}
.title-gray{
color: DarkSlateGray;
}