PluginProbe
Front End PM / 1.3
Front End PM v1.3
trunk 1.1 1.2 1.3 10.1.1 10.1.2 10.1.3 10.1.4 10.1.5 10.1.6 10.1.7 10.2.1 11.1.1 11.2.1 11.2.2 11.2.3 11.3.1 11.3.3 11.3.4 11.3.5 11.3.6 11.3.7 11.3.8 11.3.9 11.4.1 All 58 releases
front-end-pm / style / style.css

style.css in Front End PM 1.3, at style/style.css

267 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*The main wrapper*/
2 #fep-wrapper
3 {
4 margin: 5px;
5 position: relative;
6 /*background-color: white;*/ /*Uncomment this if you have dark background and can't see the text*/
7 }
8
9 /*Header styling*/
10 #fep-header
11 {
12 border: 1px solid #E7E7E7;
13 width: 100%;
14 color: white;
15 }
16
17 #fep-header strong
18 {
19 color: #333;
20 font-size: 20px;
21 }
22
23 #fep-header p
24 {
25 padding: 0px;
26 margin: 3px;
27 color: #333;
28 font-size: 12px;
29 line-height:20px;
30 }
31
32 #fep-header .avatar
33 {
34 float: left;
35 border: none;
36 margin: 5px !important;
37 padding: 0 !important;
38 }
39
40 /*Menu Styling*/
41 #fep-menu
42 {
43 color: #333;
44 width: 100%;
45 font-size: 14px;
46 font-weight: bold;
47 }
48
49 /*Notify Styling*/
50 #error,#success
51 {
52 color: black;
53 background-color: #FFEBE8;
54 border-color: #C00;
55 height: 100%;
56 width: 98%;
57 text-align: center;
58 font-size: 12px;
59 font-weight: bold;
60 border-width: 1px;
61 border-style: solid;
62 padding: 0.6em;
63 margin: 15px 0;
64 -moz-border-radius: 3px;
65 -khtml-border-radius: 3px;
66 -webkit-border-radius: 3px;
67 border-radius: 3px;
68 }
69 #success
70 {
71 background-color: #66FF99;
72 border-color: #E6DB55;
73
74 }
75 /*Content styling*/
76 #fep-content
77 {
78 margin-top: 10px;
79 margin-bottom: 10px;
80 padding: 0px;
81 height: auto;
82 width: 100%;
83 border: 1px solid #E7E7E7;
84 color: #333;
85 }
86
87 #fep-content p, #fep-content form
88 {
89 margin: 5px;
90 }
91
92 #fep-content hr
93 {
94 margin-top: 5px;
95 margin-bottom: 5px;
96 margin-right: 5px;
97 }
98
99 #fep-content .pmtext p
100 {
101 margin-left: 0px;
102 }
103
104 #fep-content textarea
105 {
106 width: 90%;
107 height: 200px;
108 }
109
110 #fep-content input[type=text]
111 {
112 width: 45%;
113 min-width:250px;
114 }
115
116 #fep-content table
117 {
118 width: 100%;
119 border-collapse: collapse;
120 border: 0px;
121 text-align: left;
122 }
123
124 #fep-content th, #fep-content td
125 {
126 padding-left: 5px;
127 border: 1px solid #E7E7E7;
128 vertical-align: top;
129 }
130 #fep-content .head{
131 font-size: 14px;
132 width:100%;
133 color: #fff;
134 height: 100%;
135 background: #444;
136 }
137 #fep-content .trodd0
138 {
139 background-color: #FAFAFA;
140 }
141 #fep-content .trodd1
142 {
143 background-color: #F2F7FC;
144 }
145
146 #fep-content img
147 {
148 max-width: 400px;
149 margin-top: 5px;
150 margin-bottom: 5px;
151 }
152
153 #fep-content a
154 {
155 color: navy;
156 text-decoration: underline;
157 }
158
159 #fep-content small
160 {
161 font-size: 10px;
162 }
163
164 #fep-content .avatar
165 {
166 float: left;
167 border: none;
168 margin: 0px;
169 margin-bottom: 5px;
170 }
171
172 #fep-content blockquote
173 {
174 color: #666;
175 width: 90%;
176 background: #eee;
177 border: 1px solid #E7E7E7;
178 padding-left: 5px;
179 margin-top: 5px;
180 margin-bottom: 5px;
181 }
182
183 pre.code
184 {
185 width: 90%;
186 background: #eee;
187 border: solid 1px #ccc;
188 padding: 5px;
189 overflow: auto;
190 white-space: pre-wrap;
191 font-size: 95%; /*If font is too small try increasing this*/
192 }
193
194 /*Footer styling*/
195 #fep-footer
196 {
197 text-align: center;
198 font-size: 10px;
199 border: 1px solid #E7E7E7;
200 width: 100%;
201 color: #333;
202 }
203
204 #fep-footer a, #fep-footer a:hover, #fep-footer a:visited
205 {
206 color: #333;
207 text-decoration: underline;
208 }
209
210 /*Auto-suggest*/
211 #result
212 {
213 width:250px;
214 border: solid 1px #333;
215 display: none;
216 position: absolute;
217 background: #00FF99;
218 }
219
220 #result ul, #result li
221 {
222 padding: 0px;
223 margin: 0px;
224 border: 0px;
225 list-style: none;
226 }
227
228 #result li
229 {
230 border-top: solid 1px #333;
231 }
232
233 #result li a
234 {
235 display: block;
236 padding: 5px;
237 text-decoration: none;
238 color: #333;
239 font-weight: normal;
240 }
241
242 #result li a:hover
243 {
244 background: #333;
245 color: white;
246 }
247 #fep-menu .fep-button,.fep-button {
248 display: inline-block;
249 color:#000000 !important;
250 font-size:13px;
251 background:#F0FCFF;
252 border: 1px solid #8FBFC9;
253 padding:10px 20px;
254 -moz-border-radius: 5px;
255 -webkit-border-radius: 5px;
256 border-radius: 5px;
257 margin-right:10px;
258 margin-top:10px;
259 font-weight:bold;
260 text-decoration:none !important;
261 }
262
263 #fep-menu .fep-button:hover,.fep-button:hover {
264 background:#D3EEF5;
265 color: #333;
266 font-size: 14px;
267 }