| 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 |
white-space: pre-line; |
| 130 |
} |
| 131 |
#fep-content .head{ |
| 132 |
font-size: 14px; |
| 133 |
width:100%; |
| 134 |
color: #fff; |
| 135 |
height: 100%; |
| 136 |
background: #444; |
| 137 |
} |
| 138 |
#fep-content .trodd0 |
| 139 |
{ |
| 140 |
background-color: #FAFAFA; |
| 141 |
} |
| 142 |
#fep-content .trodd1 |
| 143 |
{ |
| 144 |
background-color: #F2F7FC; |
| 145 |
} |
| 146 |
|
| 147 |
#fep-content img |
| 148 |
{ |
| 149 |
max-width: 400px; |
| 150 |
margin-top: 5px; |
| 151 |
margin-bottom: 5px; |
| 152 |
} |
| 153 |
|
| 154 |
#fep-content a |
| 155 |
{ |
| 156 |
color: navy; |
| 157 |
text-decoration: underline; |
| 158 |
} |
| 159 |
|
| 160 |
#fep-content small |
| 161 |
{ |
| 162 |
font-size: 10px; |
| 163 |
} |
| 164 |
|
| 165 |
#fep-content .avatar |
| 166 |
{ |
| 167 |
float: left; |
| 168 |
border: none; |
| 169 |
margin: 0px; |
| 170 |
margin-bottom: 5px; |
| 171 |
} |
| 172 |
|
| 173 |
#fep-content blockquote |
| 174 |
{ |
| 175 |
color: #666; |
| 176 |
width: 90%; |
| 177 |
background: #eee; |
| 178 |
border: 1px solid #E7E7E7; |
| 179 |
padding-left: 5px; |
| 180 |
margin-top: 5px; |
| 181 |
margin-bottom: 5px; |
| 182 |
} |
| 183 |
|
| 184 |
pre.code |
| 185 |
{ |
| 186 |
width: 90%; |
| 187 |
background: #eee; |
| 188 |
border: solid 1px #ccc; |
| 189 |
padding: 5px; |
| 190 |
overflow: auto; |
| 191 |
white-space: pre-wrap; |
| 192 |
font-size: 95%; /*If font is too small try increasing this*/ |
| 193 |
} |
| 194 |
|
| 195 |
/*Footer styling*/ |
| 196 |
#fep-footer |
| 197 |
{ |
| 198 |
text-align: center; |
| 199 |
font-size: 10px; |
| 200 |
border: 1px solid #E7E7E7; |
| 201 |
width: 100%; |
| 202 |
color: #333; |
| 203 |
} |
| 204 |
|
| 205 |
#fep-footer a, #fep-footer a:hover, #fep-footer a:visited |
| 206 |
{ |
| 207 |
color: #333; |
| 208 |
text-decoration: underline; |
| 209 |
} |
| 210 |
|
| 211 |
/*Auto-suggest*/ |
| 212 |
#result |
| 213 |
{ |
| 214 |
width:250px; |
| 215 |
border: solid 1px #333; |
| 216 |
display: none; |
| 217 |
position: absolute; |
| 218 |
background: #00FF99; |
| 219 |
} |
| 220 |
|
| 221 |
#result ul, #result li |
| 222 |
{ |
| 223 |
padding: 0px; |
| 224 |
margin: 0px; |
| 225 |
border: 0px; |
| 226 |
list-style: none; |
| 227 |
} |
| 228 |
|
| 229 |
#result li |
| 230 |
{ |
| 231 |
border-top: solid 1px #333; |
| 232 |
} |
| 233 |
|
| 234 |
#result li a |
| 235 |
{ |
| 236 |
display: block; |
| 237 |
padding: 5px; |
| 238 |
text-decoration: none; |
| 239 |
color: #333; |
| 240 |
font-weight: normal; |
| 241 |
} |
| 242 |
|
| 243 |
#result li a:hover |
| 244 |
{ |
| 245 |
background: #333; |
| 246 |
color: white; |
| 247 |
} |
| 248 |
#fep-menu .fep-button,.fep-button { |
| 249 |
display: inline-block; |
| 250 |
color:#000000 !important; |
| 251 |
font-size:13px; |
| 252 |
background:#F0FCFF; |
| 253 |
border: 1px solid #8FBFC9; |
| 254 |
padding:10px 20px; |
| 255 |
-moz-border-radius: 5px; |
| 256 |
-webkit-border-radius: 5px; |
| 257 |
border-radius: 5px; |
| 258 |
margin-right:10px; |
| 259 |
margin-top:10px; |
| 260 |
font-weight:bold; |
| 261 |
text-decoration:none !important; |
| 262 |
} |
| 263 |
|
| 264 |
#fep-menu .fep-button:hover,.fep-button:hover { |
| 265 |
background:#D3EEF5; |
| 266 |
color: #333; |
| 267 |
font-size: 14px; |
| 268 |
} |