"FIX: Section h3 title does not have good size"

This commit is contained in:
Doug Le Tough 2017-11-26 00:34:54 +01:00
parent e7e1e6f3ed
commit 4c7b3eb090
2 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ main > article.error, main > article.error > p {
text-align: center;
}
main > article > h3 {
main > article > h3, main > section.inline > article > h3 {
font-size: 30px;
color: var(--text-color);
}

View File

@ -3,7 +3,7 @@
<article class='left'>
<h3>Get HTML response from AJAX</h3>
<p>Click the refresh button to get the HTML response.</p>
<p>The response may randomly be an error response.</p>
<p>The response may randomly be an error response so you should try it more than once.</p>
<input type='button' class='refresh' value=' ' onclick='javascript:get_html_from_ajax(document.getElementById("html_container"), "/get_html_from_ajax");'>
</article>
<article class='right' id='html_container'>
@ -19,7 +19,7 @@
<article class='right'>
<h3>Get value from AJAX</h3>
<p>Get a random value from the application.</p>
<p>Value may randomly be unavailable raising an error.</p>
<p>Value may randomly be unavailable raising an error so you should try it more than once.</p>
<input type='text' id='value_receiver'>
<input type='button' value="Try me" onclick='javascript:get_value_from_ajax(document.getElementById("value_receiver"), "/get_value_from_ajax", "TETA_ERR");'>
</article>