tweak CSS and Sizes for iPhone

This commit is contained in:
David Wetzel 2017-11-16 23:34:26 -05:00
parent 86a7e29d4b
commit 7111c26561
3 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2017-11-16 David Wetzel <dave@turbocat.de>
* GSWExtensions/GSWSessionRestorationErrorPage.gswc/GSWSessionRestorationErrorPage.html
* GSWExtensions/GSWExceptionPage.gswc/GSWExceptionPage.html
tweak CSS and Sizes for iPhone
2017-09-02 David Wetzel <dave@turbocat.de> 2017-09-02 David Wetzel <dave@turbocat.de>
* GSWeb/GSWSessionTimeOutManager.m * GSWeb/GSWSessionTimeOutManager.m
shorten description to avoid loop shorten description to avoid loop

View file

@ -2,6 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css"> <style type="text/css">
body {color: #111;font-family:"Helvetica Neue",Helvetica,sans-serif;} body {color: #111;font-family:"Helvetica Neue",Helvetica,sans-serif;}
.fail {margin: auto; padding: 40px; display: block; .fail {margin: auto; padding: 40px; display: block;
@ -13,6 +14,9 @@
img {float:left;padding-right: 10px;} img {float:left;padding-right: 10px;}
a {color: #0092E8;} a {color: #0092E8;}
a:hover {color: #0071b3;} a:hover {color: #0071b3;}
@media screen and (max-width: 500px) {
.fail {padding: 10px; width: 95%;}
}
</style> </style>
<title>GNUstepWeb Error</title> <title>GNUstepWeb Error</title>
<meta name="robots" content="noindex,nofollow"/> <meta name="robots" content="noindex,nofollow"/>
@ -24,7 +28,7 @@
<h2>An error occured in application <gsweb name="ApplicationNameString"></gsweb>.</h2> <h2>An error occured in application <gsweb name="ApplicationNameString"></gsweb>.</h2>
<p><gsweb name="ReenterHyperlink">Re-enter <gsweb name="ApplicationNameString"></gsweb> to continue.</gsweb></p> <p><gsweb name="ReenterHyperlink">Re-enter <gsweb name="ApplicationNameString"></gsweb> to continue.</gsweb></p>
<table border="0" width="700"> <table border="0" width="90%">
<tr> <tr>
<td align="RIGHT" Valign="MIDDLE"> <td align="RIGHT" Valign="MIDDLE">
<b>Application:</b> <b>Application:</b>

View file

@ -2,6 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css"> <style type="text/css">
body {color: #111;font-family:"Helvetica Neue",Helvetica,sans-serif;} body {color: #111;font-family:"Helvetica Neue",Helvetica,sans-serif;}
.fail {margin: auto; padding: 40px; width: 400px; display: block; .fail {margin: auto; padding: 40px; width: 400px; display: block;
@ -13,6 +14,9 @@
img {float:left;padding-right: 10px;} img {float:left;padding-right: 10px;}
a {color: #0092E8;} a {color: #0092E8;}
a:hover {color: #0071b3;} a:hover {color: #0071b3;}
@media screen and (max-width: 500px) {
.fail {padding: 10px; width: 95%;}
}
</style> </style>
<title>Missing Session Error</title> <title>Missing Session Error</title>