blob: 59c76078a60b6cbcef6bc1339212a790d47d7db3 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
margin:0;
overflow:hidden;
background-color:#fff;
font-size:12px;
font-family: Verdana, Arial;
padding:35px 0 0;
}
#yourls-frame {
width: 100%;
height:100%;
z-index: 1;
}
#yourls-bar {
font-family: Verdana, Arial;
font-size: 12px;
position:absolute;
top:0;
height:35px;
width:100%;
background:#e3f3ff url(../img/toolbar_bg.png) repeat-x bottom center;
color:#2A85B3;
-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
z-index: 900000;
}
#yourls-bar a {
text-decoration:none;
color:#2A85B3;
}
#yourls-bar a:hover {
text-decoration:underline;
}
#yourls-about, #yourls-topsy, #yourls-delicious, #yourls-selfclose {
margin-left:10px;
float:left;
display:block;
top:5px;
position:relative;
}
#yourls-about a {
background:transparent url(../img/favicon.gif) center left no-repeat;
padding-left:20px;
color:inherit;
font-weight:bold;
}
#yourls-topsy {
width:300px;
}
#yourls-selfclose {
float:right;
margin-right:10px;
}
#yourls-once {
display:block;
text-indent:-9999px;
background:transparent url(../img/close_button.gif) center center no-repeat;
width:20px;
height:20px;
float:left;
}
#yourls-always {
display:none;
text-indent:-9999px;
background:transparent url(../img/close_button_red.gif) center center no-repeat;
width:20px;
height:20px;
float:left;
}
|