blob: 315845dac3954acca368cdcb995f8072aee767a8 (
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
|
#header-wrapper {
}
#header-inner {
}
#content-wrapper {
padding: 0 0 25px 0;
}
#content-inner {
min-height: 600px;
}
#content{
}
#content .question {
padding: 15px 0 15px 0;
border-bottom: 1px solid #f5f5f5;
}
#content .question .title {
padding: 0 0 7px 0;
font-size: 1.3em;
color: #424242;
}
#content .question .title a {
color: #424242;
}
#content .question .category {
padding: 2px 5px;
margin: 0 10px 0 0;
background: #a26dc8;
color: #ffffff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
#content .question .tutorial {
padding: 2px 5px;
margin: 0 10px 0 0;
background: #424242;
color: #ffffff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
#content .question .minute_range {
padding: 2px 5px;
margin: 0 10px 0 0;
background: #f5f5f5;
color: #424242;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
#content .question .second_range {
padding: 2px 5px;
margin: 0 10px 0 0;
background: #f5f5f5;
color: #424242;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
#footer-wrapper {
background-color: #2d2d2d;
min-height: 60px;
}
#footer-inner {
}
.field_error {
border: 1px solid red;
}
|