blob: 23d640f88476d72acb2dec7be97fb66008c88f8f (
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
|
//
// @deprecated: migrate to use common-form.scss
//
/* #user_signup_form_panel {
width: 550px;
text-align: center;
margin-left: auto;
margin-right: auto;
display: block;
padding: 20px 30px;
margin-top: 80px;
background: white;
box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.3);
} */
/* #signup_form__submit_button {
background-color: #ee3654;
border-radius: 3px;
color: #fff;
cursor: pointer;
float: right;
font-weight: bold;s
margin: 20px;
padding: 12px 20px;
text-align: center;
width: 140px;
} */
.signup_form__row {
width: 100%;
}
/* .signup_form__field {
border-radius: 3px;
border: 1px solid #4B7CBD;
float: left;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
margin: 5px;
}
.signup_form__row_sharing_field {
display: inline-block;
}
.signup_form__field input {
background-color: inherit;
border: none;
}
.signup_form__field input:focus {
outline: none;
}
#signup_form__title {
color: #ee3654;
margin-bottom: 30px;
background: url(../img/logo-red.png);
background-repeat: no-repeat;
background-position: 140px 2px;
}
#signup_form__submit_button_row {
overflow: auto;
} */
.input-username {
background-image: url(../img/user-icon.png);
background-position-x: 21px;
}
.signup-button {
width: 92%;
}
#signup_form__submit_button:hover {
alpha: 1.0;
}
#signup_form__ajax_response {
margin-top: 30px;
margin: 10px;
}
#err_msg_row p{
margin-top: $one-baseline;
width: 92%;
padding: $one-baseline;
font-size: $h4-size;
line-hight: 18px;
text-align: center;
color: $dark-magenta;
background-color: lighten( $magenta, 40% );
border: 1px solid $dark-magenta;
}
|