mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改 less 样式
This commit is contained in:
parent
5a63c4cbe4
commit
5e05da2280
@ -44,7 +44,6 @@
|
|||||||
|
|
||||||
// 左侧菜单布局颜色
|
// 左侧菜单布局颜色
|
||||||
@LeftMainBackColor: #393D49 !important;
|
@LeftMainBackColor: #393D49 !important;
|
||||||
@LeftMainSubsBackColor: rgba(0, 0, 0, 0.3) !important;
|
|
||||||
|
|
||||||
@LeftMainNavHoverBackColor: rgba(99, 99, 99, 0.2);
|
@LeftMainNavHoverBackColor: rgba(99, 99, 99, 0.2);
|
||||||
@LeftMainNavHoverTextColor: #FFF;
|
@LeftMainNavHoverTextColor: #FFF;
|
||||||
|
@ -190,6 +190,13 @@
|
|||||||
width: @LayoutDefaLeftSzie;
|
width: @LayoutDefaLeftSzie;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
|
|
||||||
|
> li.layui-this {
|
||||||
|
background: @LeftMainNavActiveBackColor;
|
||||||
|
|
||||||
|
> a {
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
@ -202,22 +209,20 @@
|
|||||||
|
|
||||||
.layui-nav-item {
|
.layui-nav-item {
|
||||||
> a {
|
> a {
|
||||||
background: rgba(100, 100, 100, 0.5) !important;
|
background: rgba(100, 100, 100, .30) !important;
|
||||||
border-bottom: 1px solid rgba(0, 0, 0, .2);
|
border-bottom: 1px solid rgba(0, 0, 0, .20);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba(100, 100, 100, 0.6) !important;
|
background-color: rgba(100, 100, 100, .35) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.layui-nav-child {
|
.layui-nav-child {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
// background-color: @LeftMainSubsBackColor;
|
|
||||||
background-color: unset !important;
|
background-color: unset !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd, dd > a {
|
dd, dd > a {
|
||||||
//color: @LeftMainNavNormalTextColor;
|
|
||||||
background-color: @LeftMainNavNormalBackColor;
|
background-color: @LeftMainNavNormalBackColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -319,158 +324,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.layui-layout-theme-white {
|
|
||||||
&.layui-layout-left-mini {
|
|
||||||
> .layui-side .layui-side-target:before {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
> .layui-header {
|
|
||||||
background: none !important;
|
|
||||||
|
|
||||||
.layui-nav-item {
|
|
||||||
&.layui-this > a {
|
|
||||||
color: #098 !important;
|
|
||||||
font-weight: bold;
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
> a {
|
|
||||||
color: #333 !important;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #098 !important;
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
> .layui-body {
|
|
||||||
> .think-page-body > .layui-card > .layui-card-header {
|
|
||||||
height: 50px;
|
|
||||||
line-height: 50px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
box-shadow: none !important;
|
|
||||||
border-bottom: @TopHeaderBottomLine;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-side {
|
|
||||||
background-color: #fff !important;
|
|
||||||
|
|
||||||
.layui-side-target {
|
|
||||||
&:before {
|
|
||||||
content: "\e65b";
|
|
||||||
color: #FFF;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: block;
|
|
||||||
line-height: 50px;
|
|
||||||
text-align: center;
|
|
||||||
font-family: layui-icon !important;
|
|
||||||
font-size: 10px;
|
|
||||||
font-style: normal;
|
|
||||||
transform: rotate(180deg);
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
top: 50%;
|
|
||||||
right: 0;
|
|
||||||
color: #fff;
|
|
||||||
width: 12px;
|
|
||||||
height: 50px;
|
|
||||||
z-index: 99;
|
|
||||||
display: block;
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
margin-top: -25px;
|
|
||||||
background: rgba(0, 0, 0, 0.4);
|
|
||||||
border-top-left-radius: 100%;
|
|
||||||
border-bottom-left-radius: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-logo,
|
|
||||||
.layui-logo-mini {
|
|
||||||
color: #333;
|
|
||||||
box-shadow: none;
|
|
||||||
font-weight: bold;
|
|
||||||
|
|
||||||
.headimg {
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-side-scroll {
|
|
||||||
display: flex !important;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border-right: @TopHeaderBottomLine;
|
|
||||||
|
|
||||||
.layui-side-icon {
|
|
||||||
width: 60px;
|
|
||||||
display: none;
|
|
||||||
background: #fff;
|
|
||||||
#defaScrollbar();
|
|
||||||
|
|
||||||
a {
|
|
||||||
height: 60px;
|
|
||||||
display: block;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-icon {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .layui-this {
|
|
||||||
background: #fff;
|
|
||||||
|
|
||||||
.layui-icon {
|
|
||||||
color: #098 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-side-tree {
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
.layui-nav-item {
|
|
||||||
background: none !important;
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #333 !important;
|
|
||||||
background: none !important;
|
|
||||||
border-bottom: none !important;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #098 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-this, &.layui-this {
|
|
||||||
> a {
|
|
||||||
color: #098 !important;
|
|
||||||
background: none !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&ed > a {
|
|
||||||
color: #999 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layui-layout-left-mini {
|
.layui-layout-left-mini {
|
||||||
.layui-header {
|
.layui-header {
|
||||||
left: @LayoutMiniLeftSize !important;
|
left: @LayoutMiniLeftSize !important;
|
||||||
|
155
public/static/theme/css/_layout.white.less
Normal file
155
public/static/theme/css/_layout.white.less
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
.layui-layout-theme-white {
|
||||||
|
&.layui-layout-left-mini {
|
||||||
|
> .layui-side .layui-side-target:before {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .layui-header {
|
||||||
|
background: none !important;
|
||||||
|
|
||||||
|
.layui-nav-item {
|
||||||
|
&.layui-this > a {
|
||||||
|
color: #098 !important;
|
||||||
|
font-weight: bold;
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
> a {
|
||||||
|
color: #333 !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #098 !important;
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .layui-body {
|
||||||
|
> .think-page-body > .layui-card > .layui-card-header {
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
box-shadow: none !important;
|
||||||
|
border-bottom: @TopHeaderBottomLine;
|
||||||
|
|
||||||
|
+ .layui-card-body {
|
||||||
|
top: 50px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-side {
|
||||||
|
background-color: #fff !important;
|
||||||
|
|
||||||
|
.layui-side-target {
|
||||||
|
&:before {
|
||||||
|
content: "\e65b";
|
||||||
|
color: #FFF;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: block;
|
||||||
|
line-height: 50px;
|
||||||
|
text-align: center;
|
||||||
|
font-family: layui-icon !important;
|
||||||
|
font-size: 10px;
|
||||||
|
font-style: normal;
|
||||||
|
transform: rotate(180deg);
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
top: 50%;
|
||||||
|
right: 0;
|
||||||
|
color: #fff;
|
||||||
|
width: 12px;
|
||||||
|
height: 50px;
|
||||||
|
z-index: 99;
|
||||||
|
cursor: pointer;
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
margin-top: -25px;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
border-top-left-radius: 100%;
|
||||||
|
border-bottom-left-radius: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-logo,
|
||||||
|
.layui-logo-mini {
|
||||||
|
color: #333;
|
||||||
|
box-shadow: none;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
.headimg {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-side-scroll {
|
||||||
|
display: flex !important;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-right: @TopHeaderBottomLine;
|
||||||
|
|
||||||
|
.layui-side-icon {
|
||||||
|
width: 60px;
|
||||||
|
display: none;
|
||||||
|
background: #fff;
|
||||||
|
#defaScrollbar();
|
||||||
|
|
||||||
|
a {
|
||||||
|
height: 60px;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-icon {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .layui-this {
|
||||||
|
background: #fff;
|
||||||
|
|
||||||
|
.layui-icon {
|
||||||
|
color: #098 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-side-tree {
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
.layui-nav-item {
|
||||||
|
background: none !important;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #333 !important;
|
||||||
|
background: none !important;
|
||||||
|
border-bottom: none !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #098 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layui-this, &.layui-this {
|
||||||
|
> a {
|
||||||
|
color: #098 !important;
|
||||||
|
background: none !important;
|
||||||
|
font-weight: bold !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&ed > a {
|
||||||
|
color: #999 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -64,5 +64,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@import '_custom.less';
|
@import '_custom.less';
|
||||||
|
@import '_display.less';
|
||||||
@import '_layout.less';
|
@import '_layout.less';
|
||||||
@import '_display.less';
|
@import '_layout.white.less';
|
@ -1,225 +1 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";body,html{height:100%;display:block}body{background:url(../img/login/bg1.jpg) no-repeat center center;background-size:cover}.login-container{height:100%}.login-container .header{top:0;left:0;width:100%;height:48px;position:absolute;text-shadow:#000 .1em .1em .1em}.login-container .header .title{color:#fff;float:left;font-size:18px;line-height:48px;text-indent:40px;letter-spacing:1px}.login-container .header .title span{font-size:10px;padding-left:5px}.login-container .header a,.login-container .header a:focus,.login-container .header a:hover{color:#fff;letter-spacing:1px;text-decoration:none}.login-container .header ul{float:right}.login-container .header ul li{float:left;line-height:47px;margin-left:10px}.login-container form{top:50%;left:50%;width:300px;position:absolute;margin-top:-250px;margin-left:-150px}.login-container form h2{color:#fff;padding:20px 0;font-size:25px;text-align:center;font-weight:700;letter-spacing:3px;text-shadow:#000 .05em .05em .05em}.login-container form ul li{margin-top:20px;text-shadow:#000 .1em .1em .1em}.login-container form ul li.verify label{width:200px}.login-container form ul li.verify input.layui-input{text-transform:uppercase}.login-container form ul li.verify img{width:95px;height:44px;cursor:pointer;position:absolute;margin-left:5px;border-radius:5px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.login-container form ul li i.layui-icon{color:#fff;font-size:18px;position:absolute;padding:14px 15px 13px 20px}.login-container form ul li input{color:#fff;height:45px;padding:0 15px;font-size:14px;line-height:1em;text-indent:35px;border-radius:5px;letter-spacing:1px;background:rgba(0,0,0,.12);text-shadow:#000 .1em .1em .1em;-webkit-text-fill-color:#fff!important;box-shadow:0 2px 3px 0 rgba(0,0,0,.3) inset!important}.login-container form ul li input:-webkit-autofill,.login-container form ul li input:-webkit-autofill:active,.login-container form ul li input:-webkit-autofill:focus,.login-container form ul li input:-webkit-autofill:hover,.login-container form ul li input:active,.login-container form ul li input:focus,.login-container form ul li input:hover{text-shadow:#000 .1em .1em .1em;box-shadow:0 2px 3px 0 rgba(0,0,0,.3) inset!important;-webkit-text-fill-color:#fff!important;-webkit-transition-delay:9999s!important;-webkit-transition:color 9999s ease-out,background-color 9999s ease-out!important}.login-container form ul li span{letter-spacing:1px;color:#ff0!important}.login-container form ul li button{color:#333!important;height:45px!important;border:none!important;background:#fff!important;border-radius:5px!important;letter-spacing:1px!important;box-shadow:0 15px 30px 0 hsla(0,0%,100%,.25) inset,0 2px 7px 0 rgba(0,0,0,.2)}.login-container form ul li button:hover{opacity:1}.login-container .footer{left:0;bottom:0;color:#fff;width:100%;position:absolute;text-align:center;line-height:30px;padding-bottom:10px;text-shadow:#000 .1em .1em .1em}.login-container .footer a,.login-container .footer span{color:#fff}.login-container .footer a:hover{color:#ccc}#supersized{top:0;left:0;width:100%;height:100%;z-index:-999;display:block;position:fixed;overflow:hidden}#supersized img{border:0;width:auto;height:auto;display:none;outline:0;position:relative;max-width:none!important}#supersized.speed img{image-rendering:-moz-crisp-edges;-ms-interpolation-mode:nearest-neighbor}#supersized.quality img{image-rendering:optimizeQuality;-ms-interpolation-mode:bicubic}#supersized a,#supersized li{width:100%;height:100%;display:block;cursor:default}#supersized li{top:0;left:0;z-index:-30;position:fixed;overflow:hidden;list-style:none}#supersized li.prevslide{z-index:-20}#supersized li.prevslide img{display:inline}#supersized li.activeslide{z-index:-10}#supersized li.activeslide img{display:inline}#supersized li.image-loading{width:100%;height:100%;background:url(../../plugs/supersized/progress.gif) no-repeat center center}#supersized li.image-loading img{visibility:hidden}#supersized-loader{top:50%;left:50%;z-index:0;width:60px;height:60px;position:absolute;text-indent:-999em;margin:-30px 0 0 -30px;background:url(../../plugs/supersized/progress.gif) no-repeat center center}/*# sourceMappingURL=login.css.map */
|
||||||
body,
|
|
||||||
html {
|
|
||||||
height: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
background: url("../img/login/bg1.jpg") no-repeat center center;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
.login-container {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.login-container .header {
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 48px;
|
|
||||||
position: absolute;
|
|
||||||
text-shadow: #000 0.1em 0.1em 0.1em;
|
|
||||||
}
|
|
||||||
.login-container .header .title {
|
|
||||||
color: #fff;
|
|
||||||
float: left;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 48px;
|
|
||||||
text-indent: 40px;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
}
|
|
||||||
.login-container .header .title span {
|
|
||||||
font-size: 10px;
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
.login-container .header a,
|
|
||||||
.login-container .header a:focus,
|
|
||||||
.login-container .header a:hover {
|
|
||||||
color: #fff;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
.login-container .header ul {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.login-container .header ul li {
|
|
||||||
float: left;
|
|
||||||
line-height: 47px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
.login-container form {
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 300px;
|
|
||||||
position: absolute;
|
|
||||||
margin-top: -250px;
|
|
||||||
margin-left: -150px;
|
|
||||||
}
|
|
||||||
.login-container form h2 {
|
|
||||||
color: #fff;
|
|
||||||
padding: 20px 0;
|
|
||||||
font-size: 25px;
|
|
||||||
text-align: center;
|
|
||||||
font-weight: 700;
|
|
||||||
letter-spacing: 3px;
|
|
||||||
text-shadow: #000 0.05em 0.05em 0.05em;
|
|
||||||
}
|
|
||||||
.login-container form ul li {
|
|
||||||
margin-top: 20px;
|
|
||||||
text-shadow: #000 0.1em 0.1em 0.1em;
|
|
||||||
}
|
|
||||||
.login-container form ul li.verify label {
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
.login-container form ul li.verify input.layui-input {
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
.login-container form ul li.verify img {
|
|
||||||
width: 95px;
|
|
||||||
height: 44px;
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
margin-left: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.login-container form ul li i.layui-icon {
|
|
||||||
color: #fff;
|
|
||||||
font-size: 18px;
|
|
||||||
position: absolute;
|
|
||||||
padding: 14px 15px 13px 20px;
|
|
||||||
}
|
|
||||||
.login-container form ul li input {
|
|
||||||
color: #fff;
|
|
||||||
height: 45px;
|
|
||||||
padding: 0 15px;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 1em;
|
|
||||||
text-indent: 35px;
|
|
||||||
border-radius: 5px;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
background: rgba(0, 0, 0, 0.12);
|
|
||||||
text-shadow: #000 0.1em 0.1em 0.1em;
|
|
||||||
-webkit-text-fill-color: #fff !important;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3) inset !important;
|
|
||||||
}
|
|
||||||
.login-container form ul li input:hover,
|
|
||||||
.login-container form ul li input:focus,
|
|
||||||
.login-container form ul li input:active,
|
|
||||||
.login-container form ul li input:-webkit-autofill,
|
|
||||||
.login-container form ul li input:-webkit-autofill:hover,
|
|
||||||
.login-container form ul li input:-webkit-autofill:focus,
|
|
||||||
.login-container form ul li input:-webkit-autofill:active {
|
|
||||||
text-shadow: #000 0.1em 0.1em 0.1em;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3) inset !important;
|
|
||||||
-webkit-text-fill-color: #fff !important;
|
|
||||||
-webkit-transition-delay: 9999s !important;
|
|
||||||
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
|
|
||||||
}
|
|
||||||
.login-container form ul li span {
|
|
||||||
letter-spacing: 1px;
|
|
||||||
color: #ff0 !important;
|
|
||||||
}
|
|
||||||
.login-container form ul li button {
|
|
||||||
color: #333 !important;
|
|
||||||
height: 45px !important;
|
|
||||||
border: none !important;
|
|
||||||
background: #fff !important;
|
|
||||||
border-radius: 5px !important;
|
|
||||||
letter-spacing: 1px !important;
|
|
||||||
box-shadow: 0 15px 30px 0 hsla(0, 0%, 100%, 0.25) inset, 0 2px 7px 0 rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
.login-container form ul li button:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.login-container .footer {
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
color: #fff;
|
|
||||||
width: 100%;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 30px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
text-shadow: #000 0.1em 0.1em 0.1em;
|
|
||||||
}
|
|
||||||
.login-container .footer a,
|
|
||||||
.login-container .footer span {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.login-container .footer a:hover {
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
#supersized {
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
z-index: -999;
|
|
||||||
display: block;
|
|
||||||
position: fixed;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
#supersized img {
|
|
||||||
border: 0;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
display: none;
|
|
||||||
outline: 0;
|
|
||||||
position: relative;
|
|
||||||
max-width: none !important;
|
|
||||||
}
|
|
||||||
#supersized.speed img {
|
|
||||||
image-rendering: -moz-crisp-edges;
|
|
||||||
-ms-interpolation-mode: nearest-neighbor;
|
|
||||||
}
|
|
||||||
#supersized.quality img {
|
|
||||||
image-rendering: optimizeQuality;
|
|
||||||
-ms-interpolation-mode: bicubic;
|
|
||||||
}
|
|
||||||
#supersized a,
|
|
||||||
#supersized li {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: block;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
#supersized li {
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: -30;
|
|
||||||
position: fixed;
|
|
||||||
overflow: hidden;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
#supersized li.prevslide {
|
|
||||||
z-index: -20;
|
|
||||||
}
|
|
||||||
#supersized li.prevslide img {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
#supersized li.activeslide {
|
|
||||||
z-index: -10;
|
|
||||||
}
|
|
||||||
#supersized li.activeslide img {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
#supersized li.image-loading {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background: url(../../plugs/supersized/progress.gif) no-repeat center center;
|
|
||||||
}
|
|
||||||
#supersized li.image-loading img {
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
#supersized-loader {
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
z-index: 0;
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
position: absolute;
|
|
||||||
text-indent: -999em;
|
|
||||||
margin: -30px 0 0 -30px;
|
|
||||||
background: url(../../plugs/supersized/progress.gif) no-repeat center center;
|
|
||||||
}
|
|
||||||
/*# sourceMappingURL=login.css.map */
|
|
@ -1 +1 @@
|
|||||||
{"version":3,"sources":["login.less"],"names":[],"mappings":"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","file":"login.css"}
|
{"version":3,"sources":["login.less"],"names":[],"mappings":"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"}
|
Loading…
x
Reference in New Issue
Block a user