blob: f9525f0cae116fae03f234bb507323be9626b563 (
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
|
#cke_editor
{
width:500px;
}
.cke_top
{
padding:0px;
}
#container
{
width: 500px;
margin: 0 auto;
font-size: 12px;
line-height: 20px;
}
.whisper_unit_odd
{
background: #f2f2f2;
}
.whisper_unit_even
{
}
.whisper_unit
{
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
padding: 5px;
}
.whisper_date
{
float:left;
color : #aaaaaa;
}
.whisper_edit a
{
float:right;
color : #cccccc;
}
.whisper_edit a:hover
{
float:right;
color : #3ea17c;
}
.pagejump
{
color : #3ea17c;
}
.whisper_content img
{
max-width: 100%;
}
#pagejump_next
{
float:right;
}
p {
-webkit-margin-before: 0px;
-webkit-margin-after: 0px;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}
/*cke*/
a.cke_button
{
padding:2px;
}
.cke_editable
{
font-size: 12px;
line-height: 12px;
}
|