blob: 0023fc41ff219d8139e004ea4fa9d7acdf452ef3 (
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
|
* {
box-sizing: border-box;
&:before,
&:after {
box-sizing: border-box;
}
}
.login-background {
background: url(../img/login-background.jpg);
background-repeat: no-repeat;
background-position: center;
}
.welcome-box {
margin-left: auto;
margin-right: auto;
margin-top: 50px;
width: 600px;
height: 800px;
background: white;
}
.login-rhizi-logo {
margin-left: auto;
display: block;
margin-right: auto;
padding-top: 25px;
}
.login-header {
margin-top: 35px;
margin-bottom: 35px;
text-align: center;
color: $magenta;
}
.login-text {
margin-left:35px;
margin-right:35px;
text-align: center;
}
.login-form {
margin-top: 50px;
margin-bottom: 50px;
margin-left: 150px;
margin-right: 150px;
text-align: center;
padding: 20px;
width: 300px;
position: relative;
}
.clearfix {
*zoom: 1;
&:before,
&:after {
content: ' ';
display: table;
}
&:after {
clear: both;
}
}
.login-input {
border: none;
font-family: inherit;
font-size: inherit;
margin: 0;
-webkit-appearance: none;
&:focus {
outline: none;
}
&[type="submit"] {
width: 100%;
cursor: pointer;
background: #ee3654;
border-radius: 3px;
color: #fff;
float: right;
font-weight: bold;
margin-top: 20px;
margin-bottom: 15px;
padding: 12px 20px;
&:hover {
background: $dark-magenta;
}
}
&[type="email"] {
background: url(../img/mail-icon.png) no-repeat scroll 20px 15px;
border: 1px solid #dcdcdc;
padding: 12px 10px;
width: 100%;
border-radius: 3px 3px 0 0;
padding-left:60px;
}
&[type="password"] {
background: url(../img/password-icon.png) no-repeat scroll 20px 15px;
border: 1px solid #dcdcdc;
padding: 12px 10px;
width: 100%;
border-top: none;
border-radius: 0px 0px 3px 3px;
padding-left:60px;
}
}
.forgot-password {
color: $mid-grey;
text-decoration: none;
&:hover {
color: $dark-grey;
}
}
|