blob: 8a64960a74cfffc98fb61201a684c4852856422b (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/* Tag cloud ~~~~~~~~~~~~~~~~~~~~~~~ */
#g-tag-cloud ul {
font-size: 1.2em;
text-align: justify;
}
#g-tag-cloud ul li {
display: inline;
line-height: 1.5em;
text-align: justify;
}
#g-tag-cloud ul li a {
text-decoration: none;
}
#g-tag-cloud ul li span {
display: none;
}
#g-tag-cloud ul li.size0 a {
color: #9cf;
font-size: 70%;
font-weight: 100;
}
#g-tag-cloud ul li.size1 a {
color: #9cf;
font-size: 80%;
font-weight: 100;
}
#g-tag-cloud ul li.size2 a {
color: #69f;
font-size: 90%;
font-weight: 300;
}
#g-tag-cloud ul li.size3 a {
color: #69c;
font-size: 100%;
font-weight: 500;
}
#g-tag-cloud ul li.size4 a {
color: #369;
font-size: 110%;
font-weight: 700;
}
#g-tag-cloud ul li.size5 a {
color: #0e2b52;
font-size: 120%;
font-weight: 900;
}
#g-tag-cloud ul li.size6 a {
color: #0e2b52;
font-size: 130%;
font-weight: 900;
}
#g-tag-cloud ul li.size7 a {
color: #0e2b52;
font-size: 140%;
font-weight: 900;
}
#g-tag-cloud ul li a:hover {
color: #f30;
text-decoration: underline;
}
/* Add tag form ~~~~~~~~~~~~~~~~~~~~ */
#g-sidebar .g-short-form .textbox {
width: 11em;
}
/* Tag admin ~~~~~~~~~~~~~~~~~~~~~~~ */
#g-tag-admin {
table-layout: fixed;
}
#g-tag-admin td {
border: 0;
vertical-align: top;
}
#g-tag-admin ul {
margin-bottom: 2em;
}
#g-tag-admin li {
padding: .1em 0 .2em 0;
}
#g-tag-admin form ul {
margin-bottom: 0;
}
|