| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*
- *
- * Template Name: Fullscreen Login
- * Description: Login Template with Fullscreen Background Slideshow
- * Author: Anli Zaimi
- * Author URI: http://azmind.com
- *
- */
- body {
-
- /*font-family: 'PT Sans', Helvetica, Arial, sans-serif;*/
- font-family:"Microsoft YaHei",微软雅黑,"Microsoft JhengHei",华文细黑,STHeiti,MingLiu;
-
- color: #fff;
- }
- .page-container {
- margin: 30px auto 15px auto;
- text-align: center;
- width: 100%;
- padding: 20px;
- }
- h1 {
- font-family: PingFangSC;
- font-size: 18px;
- color: #333333;
- letter-spacing: 0;
- line-height: 30px;
- }
- form {
- position: relative;
- width: 100%;
- margin: 15px auto 0 auto;
- text-align: center;
- background: #F3F3F3;
- box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
- border-radius: 4px;
- }
- input {
- width: 270px;
- height: 42px;
- line-height:42px;
- padding: 0 15px;
- background: #2d2d2d; /* browsers that don't support rgba */
- *background-color:transparent;
- background: rgba(45,45,45,.15);
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- border-radius: 6px;
- border: 1px solid #3d3d3d; /* browsers that don't support rgba */
- border: 1px solid rgba(255,255,255,.15);
- -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
- -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
- box-shadow: 0 2px 3px 0 rgba(0,0,0,.1) inset;
- font-family: 'PT Sans', Helvetica, Arial, sans-serif;
- font-size: 14px;
- color: #fff;
- text-shadow: 0 1px 2px rgba(0,0,0,.1);
- -o-transition: all .2s;
- -moz-transition: all .2s;
- -webkit-transition: all .2s;
- -ms-transition: all .2s;
- }
- input:-moz-placeholder { color: #fff; }
- input:-ms-input-placeholder { color: #fff; }
- input::-webkit-input-placeholder { color: #fff; }
- input:focus {
- outline: none;
- -moz-box-shadow:
- 0 2px 3px 0 rgba(0,0,0,.1) inset,
- 0 2px 7px 0 rgba(0,0,0,.2);
- -webkit-box-shadow:
- 0 2px 3px 0 rgba(0,0,0,.1) inset,
- 0 2px 7px 0 rgba(0,0,0,.2);
- box-shadow:
- 0 2px 3px 0 rgba(0,0,0,.1) inset,
- 0 2px 7px 0 rgba(0,0,0,.2);
- }
- .button {
- cursor: pointer;
- width: 100%;
- height: 44px;
- margin-top: 25px;
- padding: 0;
- background: #2976CE;
- border-radius: 4px;
- border: 0px;
- font-family: 'PT Sans', Helvetica, Arial, sans-serif;
- font-size: 14px;
- color: #fff;
- }
- .head {
- height: auto;
- line-height: 1;
- padding: 0;
- background: none;
- }
- /*
- .connect a.facebook { background: url(../img/facebook.png) center center no-repeat; }
- .connect a.twitter { background: url(../img/twitter.png) center center no-repeat; }
- .connect a:hover { background-position: center bottom; }
- */
|