Files
BlueLotus_XSSReceiver/static/css/login.css
firesun 264460650b Version 3.0.0
1. 完成js模板,我的js模块,可以直接添加修改用于xss的js
2. 采用ace编辑器实现js代码高亮与错误检测
3. 使用js_beautify实现js代码格式化,使用jsmin实现js代码压缩
4. 整合xss'or工具部分功能,自由编码,方便生成最终的payload
5. 增加加密方式RC4,更改默认加密方式为RC4
6. 从旧版本升级并想保留记录的请务必查看Readme里的升级步骤
7. 修复一系列bug
2016-01-24 01:07:17 +08:00

174 lines
3.3 KiB
CSS

* {
margin: 0px;
padding: 0px;
}
body {
background: #222526;
position: relative;
font-family: 'Microsoft YaHei',verdana;
}
#loginform {
position: relative;
width: 300px;
left: 50%;
margin-left: -150px;
top: 45%;
height: 190px;
margin-top: -190px;
}
input {
display: block;
margin: 21px auto 15px;
border-radius: 5px;
background: #333333;
width: 85%;
padding: 12px 20px 12px 10px;
border: none;
color: #929999;
box-shadow: inset 0px 1px 5px #272727;
font-size: 0.8em;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
input:focus {
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
box-shadow: 0px 0px 5px 1px #161718;
}
button {
background: #ff5f32;
border-radius: 50%;
border: 10px solid #222526;
font-size: 0.9em;
color: #fff;
font-weight: bold;
cursor: pointer;
width: 85px;
height: 85px;
position: absolute;
right: -42px;
top: 54px;
text-align: center;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
button:hover {
background: #222526;
border-color: #ff5f32;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
button i {
font-size: 20px;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
button:hover i {
color: #ff5f32;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
*:focus {
outline: none;
}
::-webkit-input-placeholder {
color: #929999;
}
:-moz-placeholder {
/* Firefox 18- */
color: #929999;
}
::-moz-placeholder {
/* Firefox 19+ */
color: #929999;
}
:-ms-input-placeholder {
color: #929999;
}
h1 {
text-align: center;
color: #fff;
font-size: 16px;
padding: 12px 0px;
}
#note {
color: #88887a;
font-size: 0.8em;
text-align: left;
padding-left: 5px;
}
a {
color: #88887a;
text-decoration: none;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
a:hover {
color: #fff;
margin-left: 5px;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}
#mainlogin {
float: left;
width: 250px;
height: 170px;
padding: 10px 15px;
position: relative;
background: #555555;
border-radius: 3px;
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#logo {
background: url(../images/logo.png);
height: 180px;
width: 300px;
margin-left: 17px;
margin-bottom: 10px;
background-repeat: no-repeat;
}