| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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;
- }
|