"Flex section for ajax page"
This commit is contained in:
parent
84d9a0664e
commit
2aa9485c66
@ -26,6 +26,21 @@ main > article {
|
||||
background-color: var(--clear-bg);
|
||||
}
|
||||
|
||||
main > section.inline {
|
||||
display: flex;
|
||||
background-color: var(--clear-bg);
|
||||
}
|
||||
|
||||
main > section.inline > article.left {
|
||||
flex: 0 0 50%;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
main > section.inline > article.right {
|
||||
flex: 1;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
div.content > nav {
|
||||
flex: 0 0 200px;
|
||||
background-color: var(--clear-bg);
|
||||
|
@ -8,6 +8,7 @@
|
||||
</article>
|
||||
<article class='right' id='html_container'>
|
||||
</article>
|
||||
<section class='inline'>
|
||||
<article class='left'>
|
||||
<h3>Set value via AJAX</h3>
|
||||
<p>Send value to the application.</p>
|
||||
@ -15,11 +16,12 @@
|
||||
<input type='text' id='value_sender'>
|
||||
<input type='button' value="Try me" onclick='javascript:set_value_from_ajax(document.getElementById("value_sender"), "/set_value_from_ajax", "TETA_ERR");'>
|
||||
</article>
|
||||
<article class='left'>
|
||||
<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>
|
||||
<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>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user