3bf4207e by 任超

style:注册

1 parent a4317b3c
......@@ -354,6 +354,18 @@ div.footer .system_service ul li a:hover {
font-size: 12px;
display: none
}
.userInfo {
border-radius: 5px;
top: 50px!important;
border: none!important;
}
.userInfo img {
width: 18px;
display: inline-block;
position: relative;
top: 2px;
right: 5px;
}
.btns{
display: flex;
justify-content: center;
......@@ -432,6 +444,24 @@ div.footer .system_service ul li a:hover {
top: -5px;
cursor: pointer;
}
.loginSelect p {
font-size: 16px;
display: inline-block;
}
.layui-nav * {
font-size: 16px;
}
.register {
position: relative;
margin-left: 12px;
}
.register::before {
content: '';
position: absolute;
left: -9px;
height: 10px;
border-left: 1px solid #b1afaf;
}
.not-select{
-moz-user-select:none; /*火狐*/
-webkit-user-select:none; /*webkit浏览器*/
......
......@@ -34,6 +34,7 @@ document.writeln(" </div>");
document.writeln(" <ul class='login login-con isLogin'>");
document.writeln(" <li class='loginSelect'>");
document.writeln(" <p class='loginButton PersonLogin'>登录</p>");
document.writeln(" <p class='loginButton register' id='register'><a href=\'" + localhostPaht + "/staticViews/register.html\'>注册</a></p>");
document.writeln(" </li>");
document.writeln(" </ul>");
document.writeln(" <ul class='login layui-nav login-con loginAfter'>");
......@@ -44,7 +45,7 @@ document.writeln(" <p class='loginButton PersonLogin'>登录<
document.writeln(" <dl class='layui-nav-child userInfo'>");
document.writeln(" <!-- 二级菜单 -->");
document.writeln(" <dd><a>个人信息</a></dd>");
document.writeln(" <dd><a id='cancellation'>退出</a></dd>");
document.writeln(" <dd><a id='cancellation'><img src=\'" + localhostPaht + "/staticImages/zhuxiao.png\'>退出</a></dd>");
document.writeln(" </dl>");
document.writeln(" </li>");
document.writeln(" </ul>");
......