blob: 86d0d491a7c06a639413c4a23c9c102cca6d2f98 (
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
|
/*** Admin ***/
.admin {
text-align: center;
position: absolute;
top: 10%;
left: 10%;
right: 10%;
width: 80%;
height: 500px;
border: solid #0000ff 3px;
background: url(gfx/transparent.png) repeat;
color: #000;
}
.admin .menu {
background-image: none;
border-bottom: solid blue 1px;
width: 100%;
height: 30px;
padding-top: 0px;
padding-left: 0px;
}
.admin .submenu {
border-bottom: solid blue 1px;
}
.admin .header {
background-image: none;
text-align: center;
font-size: 16px;
font-weight: bold;
border: 0px;
border-bottom: solid #0000ff 3px;
}
.admin .logout {
text-align: right;
}
.admin .preview {
text-align: left;
border: solid green 1px;
padding: 20px 20px 20px 20px;
margin: 20px 60px 20px 60px;
}
.IGNOREadmin h2 {
text-align: center;
}
.IGNOREadmin_menu {
margin-top: 4px;
border-top: solid #930104 1px;
border-left: solid #930104 1px;
border-right: solid #930104 1px;
padding-right: 2px;
float: left;
}
.IGNOREadmin_menu_entry {
text-align: center;
background: url(gfx/chicken.jpg) repeat;
border: solid #930104 1px;
color: #cc7f00;
padding: 1px;
margin: 3px 0px 3px 3px;
width: 67px;
float: left;
text-decoration: none;
}
.IGNOREadmin_menu_entry_active {
text-align: center;
background: url(gfx/chicken.jpg) repeat;
border-top: solid #930104 1px;
border-left: solid #930104 1px;
border-right: solid #930104 1px;
color: #ffaf00;
font-weight: bold;
padding: 2px 2px 6px 2px;
margin: 1px -1px 0px 2px;
width: 67px;
float: left;
text-decoration: none;
}
.IGNOREadmin_form {
padding: 4px;
border: solid #930104 1px;
min-height: 300px;
clear:both;
}
.IGNOREadmin_form input {
margin: 1px;
padding: 0px;
background: #000;
border: solid #930104 1px;
color: #6f6f6f;
width: 150px;
}
.IGNOREadmin_form select {
background: #000;
border: solid #930104 1px;
color: #6f6f6f;
width: 150px;
}
.IGNOREadmin_form textarea {
background: #000;
border: solid #930104 1px;
color: #6f6f6f;
width: 500px;
margin-bottom: 4px;
}
.IGNOREadmin_form button {
background: url(gfx/chicken.jpg) repeat;
border: solid #930104 1px;
color: #ff9f00;
}
|