blob: 29c993027d31ba1971ddbde9e442b8e378a7fb25 (
plain) (
blame)
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
|
.rounded {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
padding: 4px;
}
div.module + cite {
position: relative;
left: 0.2em;
margin: 0;
padding: 15px 0px 0px 15px;
background: transparent url(/theme/images/tip.gif) no-repeat 20px 0;
font-style: normal;
font-size: small;
}
div.module.unrounded + cite {
padding-top: 10px;
}
div.module.bquote + cite {
top: -0.8em;
}
div.module.rounded + cite {
margin: 0px;
background: transparent url(/theme/images/tip-rounded.gif) no-repeat 15px 0;
}
div.module.pimped {
color: #fff;
border: 3px solid #fff;
background-color: #111 !important;
padding-top: 5px;
padding-bottom: 5px;
}
div.module.pimped + cite {
background: transparent url(/theme/images/tip-pimped.gif) no-repeat 20px 0;
}
div.module {
margin: auto 10px 14px 10px;
margin-left: 10px;
margin-right: 10px;
font-size: 0.9em;
background-color: #B7E0FF !important;
border: 3px solid #FFFFFF;
}
div.module.unrounded {
background-color: white !important;
border: 1px solid #c9c2c1 !important;
padding: 5px;
}
div#sidebar div.module.sidebar {
width: 95%;
}
|