blob: fe11c56fc2b748d62b288266800ab16217a9a3a5 (
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
|
/*** Admin ***/
.admin {
text-align: center;
position: absolute;
top: 10%;
left: 10%;
right: 10%;
width: 80%;
min-height: 500px;
border: solid #0000ff 3px;
background: url(gfx/transparent.png) repeat;
color: #000;
}
.admin .logout {
text-align: right;
}
.admin .menu {
background-image: none;
border-bottom: solid blue 1px;
width: 100%;
height: 30px;
padding-top: 0px;
padding-left: 0px;
}
.admin .menu .entry {
border: solid green 1px;
margin: 2px;
}
.admin .submenu {
border-bottom: solid green 1px;
}
.admin .submenu .entry{
border: solid red 1px;
margin: 2px;
}
.admin .header {
background-image: none;
text-align: center;
font-size: 16px;
font-weight: bold;
border: 0px;
border-bottom: solid #0000ff 3px;
}
.admin .form .header {
background-image: none;
text-align: center;
font-size: 14px;
font-weight: bold;
border: 0px;
}
.admin .preview {
text-align: left;
border: solid green 1px;
padding: 20px 20px 20px 20px;
margin: 20px 60px 20px 60px;
}
/*
* Forms
*/
.admin .textedit {
width: 400px;
height: 200px;
}
.admin .form .label {
width: 200px;
display: inline;
valign: top;
}
.admin .form .widget {
width: 200px;
display: inline;
}
|