summaryrefslogtreecommitdiff
path: root/root/style.css
blob: d7c9dfe929498a30d0d9aa5aea7ec11a30d0cd9c (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* general */
body
{
 font-size: 8pt;
 width: 100%;
 margin:0;padding:0;border:0;
}
a
{
 text-decoration: none;
 color: black;
}
li:hover
{
 background-color: rgb(100,100,100);
}
 
/* tags */
div#all-tags ol
{
 list-style: none;
 margin:0;padding:0;border:0;
}
div#all-tags li
{
 padding: 1px;
 position: relative;
 display: block;
 clear: both;
}
div#all-tags li span.tag.name a
{
 display: block;
}
div#all-tags li span.tag.count
{
 display: block;
 position: absolute;top:0;right:0;
 text-align: right;
}
 
/* links */
div#tagset,
div#related
{
 position: fixed;
 top:0;
 width: 49%; height: 80px;
 border: solid thin black;
 background-color: white;
}
div#tagset h2,
div#related h2
{
 position: absolute;
 top: 0; left: 5px;
 margin:0;padding:0;border:0;
 background-color: white;
}
div#tagset
{
 left: 0;
}
div#related
{
 right:0;
}
div#tagset > div,
div#related > div
{
 overflow: auto;
 height: 60px;
 width: 100%;
 margin-top: 20px;
}
div#tagset ul,
div#related ul
{
 list-style: none;
 margin:0;border:0;padding:0;
}
div#tagset ul li,
div#related ul li
{
 padding: 1px;
 position: relative;
 display: block;
 clear: both;
} 
div#tagset ul li span.tag.name a,
div#related ul li span.tag.name a
{
 display: block;
}
div#tagset ul li span.tag.remove,
div#related ul li span.tag.add
{
 display: block;
 position: absolute;top:0;right:1px;
 text-align: right;
 background-color: red;
}
div#tagset ul li span.tag.remove a,
div#related ul li span.tag.add a
{
 display: block;
 width: 15px;
 text-align: center;
}
 
div#links
{
 padding:0;border:0;margin:0;
 margin-top: 85px;
}
div#links h2
{
 display: none;
}
div#links ol
{
 list-style: none;
 padding:0;margin:0;border:0;
}
div#links ol > li
{
 padding:0;margin:0;border:0;
 margin-bottom: 5px;
 position: relative;
 display: block;
}
div#links ol > li div.link.head span.link.appear
{
 display: block;
 position: absolute;bottom:0;right:1px;
 text-align: right;
 background-color: red;
 width: 15px;
 text-align: center;
}
div#links ol > li div.link.details span.link.edit
{
 border: solid thin red;
 margin-right: 4px;
}
div#links ol > li div.link.details ul
{
 display: inline;
 list-style: none;
 padding:0;margin:0;border:0;
}
div#links ol > li div.link.details ul li
{
 display: inline;
 padding:0;margin:0;border:0;
 padding-left: 5px; margin-left: 5px; border-left: solid thin black;
}