_login.scss
2.31 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
102
103
104
105
106
107
108
109
110
111
112
113
// Broker login page CSS
#login-wrap {
min-height : 400px;
background: #ffffff;
#container {
margin : 100px auto;
width : 400px;
h2 {
font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
font-size : 30px;
color : #0096d6;
padding : 20px 20px 10px 20px;
}
#login-error {
background-color : #FFEBE8;
border : 1px solid #C00;
padding : 20px;
width : 300px;
margin-bottom : 25px;
p {
padding : 0;
}
}
label {
display : block;
}
input[type=text], input[type=password] {
width : 230px;
}
p {
font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
font-size : 12px;
color : #706f73;
padding : 0 20px 0 20px;
}
}
}
// Member password reset page CSS
#password-wrap {
min-height : 400px;
#container {
margin : 100px auto;
width : auto;
@media screen and (min-width: $bp-large) {
width : 400px;
}
h2 {
font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
font-size : 30px;
color : #0096d6;
padding : 20px 20px 10px 20px;
}
label {
display : block;
}
input[type=text], input[type=password] {
width : 230px;
}
p {
font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
font-size : 12px;
color : #706f73;
padding : 0 20px 0 20px;
}
}
}
// 404 page design
.search {
margin-top : 20px;
label {
font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
font-size : 13px;
color : #706f73;
}
#input-s {
width : 250px;
}
}
.submit {
margin-top : 20px;
input {
background : #0096d6;
color : #ffffff;
width : 100px;
border : 1px solid #0096d6;
}
input:active {
color : #0096d6;
background : none;
}
}