blob: 3e67231b4fc49d1201ed4f67108913a2cb24e67c (
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
|
body {
font-family: Arial, sans-serif;
font-size: 10pt;
}
a {
color: #009cff;
}
table {}
table#node_table {
width: 1000px;
}
tr.odd {
background-color: #f1f1f1;
}
th {
text-align: left;
}
th.title {
width: 370px;
}
th.path {
width: 300px;
}
th.actions {
width: 180px;
}
th.editor {
width: 120px;
}
th.revision {
width: 30px;
}
td {
padding: 3px;
}
input[type=text] {
width: 300px;
}
.page_editor input[type=text] {
width: 600px;
}
.page_editor textarea {
width: 600px;
}
#navigation {
height: 40px;
border-bottom: 1px solid #f1f1f1;
font-size: 20px;
line-height: 30px;
}
#subnavigation {
font-size: 15px;
padding-top: 10px;
}
#navigation a {
text-decoration: none;
}
|