aboutsummaryrefslogtreecommitdiff
path: root/static/css/shared/login-area.css
blob: 3ea863fb1f854583e8382e649da90e3692ee2378 (plain)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* Login Area Container */
#login-area {
  width: 200px;
  height: 280px;
  position: relative;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 200px 280px;
  padding: 0;
  border: 0;
}

/* Login Form */
#login-form {
  display: block;
  position: relative;
  top: 118px;
}

#login-form input[type="text"],
#login-form input[type="password"] {
  display: block;
  width: 144px;
  margin: 5px auto;
  padding: 5px 8px;
  font-weight: bold;
  color: #4a2e6f;
  background: transparent;
  border-radius: 4px;
}

#login-form input::placeholder {
  color: #4a2e6f;
  font-weight: normal;
}

#login-form input[type="submit"] {
  position: absolute;
  top: 96px;
  left: 48px;
  width: 106px;
  height: 22px;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
}

/* Autofill Override */
#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;
}

/* Error Messages */
#login-error {
  position: relative;
}

#login-error>.messageBox {
  position: absolute;
  top: -120px;
  right: 48px;
  z-index: 2;
  width: 200px;
  height: 132px;
}

#login-error>.RFEERR {
  background: url("../../images/core/messages/login/RFEERR.png") no-repeat;
  background-size: contain;
}

#login-error>.IUOPERR {
  background: url("../../images/core/messages/login//IUOPERR.png") no-repeat;
  background-size: contain;
}

#login-error>.ENVERR {
  background: url("../../images/core/messages/login//ENVERR.png") no-repeat;
  background-size: contain;
}

#login-error>.VESENDERR {
  background: url("../../images/core/messages/login//VESENDERR.png") no-repeat;
  background-size: contain;
}

#login-error>.VESENT {
  background: url("../../images/core/messages/login//VESENT.png") no-repeat;
  background-size: contain;
}

#login-error>.VESUCCESS {
  background: url("../../images/core/messages/login//VESUCCESS.png") no-repeat;
  background-size: contain;
}

/* Login Area Button Styles */
#login-area>#register-now-button,
#login-area>#forgot-password-button {
  display: block;
  height: 12px;
  cursor: pointer;
  border-radius: 2px;
  position: absolute;
  background: transparent;
}

#login-area>#register-now-button {
  bottom: 23px;
}

#login-area>#forgot-password-button {
  bottom: 85px;
}

#user-area {
  background: url("../../images/core/backgrounds/user-area.png") no-repeat;
  background-size: 200px 250px;
  width: 200px;
  height: 196px;
  max-height: 250px;
  position: relative;
}

.user-items-container {
  position: relative;
  left: 78px;
  margin-top: 20px;
  border: 8px solid transparent;
  padding: 4px;
  border-image: url("../../images/core/backgrounds/user-area-border.jpg") 27 round;
  width: 122px;
}

.user-item {
  display: flex;
  align-items: center;
  margin: 4px 0px;
}

.user-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.user-title {
  font-size: 14px;
  position: relative;
  left: 78px;
  top: 10px;
}

.user-avatar {
  width: 72px;
  height: 72px;
  /* border: solid 2px #8d8dff; */
  padding: 4px;
  position: absolute;
  bottom: 0;
  border-radius: 4px;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;

}