diff --git wp-includes/functions.php wp-includes/functions.php
index 7d931bc..07f04bf 100644
|
|
function _default_wp_die_handler( $message, $title = '', $args = array() ) { |
2175 | 2175 | --> |
2176 | 2176 | <html xmlns="http://www.w3.org/1999/xhtml" <?php if ( function_exists( 'language_attributes' ) && function_exists( 'is_rtl' ) ) language_attributes(); else echo "dir='$text_direction'"; ?>> |
2177 | 2177 | <head> |
| 2178 | <meta name="viewport" content="width=device-width" /> |
2178 | 2179 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
2179 | 2180 | <title><?php echo $title ?></title> |
2180 | 2181 | <style type="text/css"> |
2181 | 2182 | html { |
2182 | | background: #f9f9f9; |
| 2183 | background: #eee; |
| 2184 | margin: 0 20px; |
2183 | 2185 | } |
2184 | 2186 | body { |
2185 | 2187 | background: #fff; |
2186 | | color: #333; |
2187 | | font-family: sans-serif; |
2188 | | margin: 2em auto; |
2189 | | padding: 1em 2em; |
2190 | | -webkit-border-radius: 3px; |
2191 | | border-radius: 3px; |
2192 | | border: 1px solid #dfdfdf; |
| 2188 | color: #555; |
| 2189 | font-family: 'Open Sans', sans-serif; |
| 2190 | margin: 50px auto; |
| 2191 | padding: 10px 20px; |
| 2192 | border: 1px solid #dedede; |
| 2193 | -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); |
| 2194 | box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); |
2193 | 2195 | max-width: 700px; |
| 2196 | -webkit-font-smoothing: subpixel-antialiased; |
| 2197 | } |
| 2198 | @media only screen and (max-width: 799px) { |
| 2199 | body { |
| 2200 | margin: 20px auto; |
| 2201 | } |
2194 | 2202 | } |
2195 | 2203 | h1 { |
2196 | | border-bottom: 1px solid #dadada; |
| 2204 | border-bottom: 1px solid #dedede; |
2197 | 2205 | clear: both; |
2198 | 2206 | color: #666; |
2199 | | font: 24px Georgia, "Times New Roman", Times, serif; |
2200 | | margin: 30px 0 0 0; |
| 2207 | font-size: 24px; |
| 2208 | margin: 30px 0; |
2201 | 2209 | padding: 0; |
2202 | 2210 | padding-bottom: 7px; |
2203 | 2211 | } |
2204 | | #error-page { |
2205 | | margin-top: 50px; |
2206 | | } |
2207 | 2212 | #error-page p { |
2208 | 2213 | font-size: 14px; |
2209 | 2214 | line-height: 1.5; |
… |
… |
function _default_wp_die_handler( $message, $title = '', $args = array() ) { |
2217 | 2222 | font-size: 14px ; |
2218 | 2223 | } |
2219 | 2224 | a { |
2220 | | color: #21759B; |
| 2225 | color: #0074a2; |
2221 | 2226 | text-decoration: none; |
2222 | 2227 | } |
2223 | 2228 | a:hover { |
2224 | | color: #D54E21; |
| 2229 | color: #2ea2cc; |
2225 | 2230 | } |
2226 | 2231 | .button { |
2227 | 2232 | display: inline-block; |