blob: f898267b5ee689c9817845dbac3a4e37f0cb3b9e (
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
|
aside {
float:left;
width:260px;
color:#333333;
display:inline;
}
aside h3 {
font-size:138.5%;
font-weight:bold;
margin-bottom:15px;
color:#333333;
padding-bottom:10px;
border-bottom:1px solid #D9D9D9;
}
.social {
margin:0 0 15px;
list-style:none;
}
.social li {
display:inline;
margin-right:10px;
}
.tipsy {
padding: 5px;
font-size: 93%;
opacity: 0.8;
filter: alpha(opacity=80);
background-repeat: no-repeat;
background-image: url(../img/tipsy.gif);
}
.tipsy-inner {
padding: 5px 8px 4px 8px;
background-color: black;
color: white;
max-width: 200px;
text-align: center;
}
.tipsy-inner {
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
.tipsy-north {
background-position: top center;
}
.tipsy-south {
background-position: bottom center;
}
.tipsy-east {
background-position: right center;
}
.tipsy-west {
background-position: left center;
}
|