Socialify

Folder ..

Viewing login-area.css
101 lines (87 loc) • 2.2 KB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
#login-area {
    width: 250px;
    height: 350px;
    background: url('../images/backgrounds/login-area.png') no-repeat;
    background-size: 250px 350px;
    margin: auto;
    padding: 0px;
    border: 0px;
    position: relative;
}

#login-form {
    display: block;
    padding-top: 151px;
    padding-left: 20px;
    padding-right: 20px;
}

#login-form input[type=text], #login-form input[type=password] {
    display: block;
    margin: 0px auto 18px auto;
    width: 180px;
    font-size: 12px;
    padding: 4px 8px;
    background: transparent;
    color: #fff;
    border-radius: 4px;
}

/* Reset auto fill */
#login-form input:-webkit-autofill,
#login-form input:-webkit-autofill:hover, 
#login-form input:-webkit-autofill:focus, 
#login-form input:-webkit-autofill:active{
    transition: background-color 1s ease-in 2000s;
}

#login-form input::placeholder {
    color: #dcdcdc;
}

#login-form input[type=submit] {
    width: 131px;
    height: 26px;
    cursor: pointer;
    position: absolute;
    bottom: 55px;
    left: 61px;
    border-radius: 2px;
    background: transparent;
}

#login-area > #register-now-button {
    display: block;
    width: 60px;
    height: 12px;
    cursor: pointer;
    border-radius: 2px;
    position: absolute;
    bottom: 30px;
    right: 40px;
    background: transparent;
}

#login-error {
    position: relative;
}

#login-error > .RFEERR {
    background: url('../images/backgrounds/login-messages/RFEERR.png') no-repeat;
}

#login-error > .IUOPERR {
    background: url('../images/backgrounds/login-messages/IUOPERR.png') no-repeat;
}

#login-error > .ENVERR {
    background: url('../images/backgrounds/login-messages/ENVERR.png') no-repeat;
}

#login-error > .VESENDERR {
    background: url('../images/backgrounds/login-messages/VESENDERR.png') no-repeat;
}

#login-error > .VESENT {
    background: url('../images/backgrounds/login-messages/VESENT.png') no-repeat;
}

#login-error > .VESUCCESS {
    background: url('../images/backgrounds/login-messages/VESUCCESS.png') no-repeat;
}

#login-error > .messageBox {
    position: absolute;
    background-size: 250px 166px;
    width: 250px;
    height: 166px;
    top: -100px;
    left: -140px;
    z-index: 2;
}