1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @charset "UTF-8";
- body {
- width: 100%;
- height: 100%;
- background: rgba(11, 22, 53, .9);
- margin: 0 auto;
- }
- #div-particles {
- position: relative;
- top: 0;
- }
- .bdy-login {
- width: 385px;
- border: 0px solid red;
- position: absolute;
- top: 600px;
- left: 200px;
- opacity: 0.1;
- }
- #frm-login {
- width: 380px;
- margin: 100 auto;
- border: 0px solid orange;
- }
- #frm-login p {
- width: 360px;
- height: 40px;
- line-height: 40px;
- color: #fff;
- margin: 20px auto 0 auto;
- border: 1px solid #06538a;
- font-size: 14px;
- user-select: none;
- }
- #frm-login p:nth-child(1) {
- border: 0px solid #fff;
- text-align: center;
- }
- #frm-login p:nth-child(2) {
- margin-top: 60px;
- background: rgba(147, 157, 220, 0.2) url("res/img/login_account.png") no-repeat 320px 8px;
- }
- #frm-login p:nth-child(3) {
- background: rgba(147, 157, 220, 0.2) url("res/img/login_password.png") no-repeat 320px 8px;
- }
- #frm-login p:nth-child(4) {
- background: rgba(147, 157, 220, 0.2) no-repeat 320px 8px;
- }
- #frm-login p:nth-child(5) {
- color: #1EB2FF;
- border: 1px solid #009FFF;
- cursor: pointer;
- font-size: 18px;
- text-align: center;
- }
- #frm-login span {
- width: 80px;
- display: inline-block;
- text-align: center;
- }
- #frm-login input {
- width: 228px;
- height: 38px;
- outline: none;
- border: none;
- background: transparent;
- background: none;
- color: #eee;
- }
- #frm-login input:-webkit-autofill {
- transition: color 9999s, background-color 9999s ease-in-out;
- }
- #ver {
- position: fixed;
- bottom: 8px;
- right: 8px;
- color: #424a61;
- font-size: 8px;
- }
|