blob: 5d821ee7b147e93c00ff3109e7e784bcd182b36a (
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
|
@charset "utf-8";
/**
* @file
* Registration specific styles
* @author 赵迤晨 (Zhao Yichen) <interarticle@gmail.com>
*/
@import "base";
body.registration {
input[type="text"],
input[type="password"] {
background-color: #f8f8f5;
border: 1px solid #babab9;
@include border-radius(2px);
@include input-placeholder-color(#898989);
width: 250px;
}
.reg-form {
border: 0px;
tr td {
padding: 3px;
padding-top: 5px;
padding-bottom: 5px;
}
td.error {
max-width: 200px;
vertical-align: top;
padding-left: 10px;
}
}
.error {
color: red;
}
input.submit {
width: 100px;
}
}
body.login {
.login-prompt {
font-size: 0.9em;
text-align: center;
background: url(../../images/horizontal-bar-grey.png) repeat-x center center;
.prompt {
background-color: white;
padding-left: 5px;
padding-right: 5px;
}
}
}
|