webapps.help: sync with help.html.

master
John Benediktsson 2020-02-27 16:09:03 -08:00
parent d732e87cfa
commit 490c66ef5d
1 changed files with 51 additions and 13 deletions

View File

@ -8,32 +8,69 @@
<t:base t:href="$help-webapp/content/" /> <t:base t:href="$help-webapp/content/" />
<title>Search - Factor Documentation</title> <title>Search - Factor Documentation</title>
<style> <style>
a:link { text-decoration: none; color: #104e8b; } html {
a:visited { text-decoration: none; color: #104e8b; } box-sizing: border-box;
a:active { text-decoration: none; color: #104e8b; } }
a:hover { text-decoration: underline; color: #104e8b; }
*, *:before, *:after {
box-sizing: inherit;
}
body { body {
font-family: sans-serif; font-style: normal margin: 0;
font-family: sans-serif;
font-size: 12pt; font-size: 12pt;
line-height: 140%;
}
a { color: #104e8b; }
a:link, a:visited, a:active { text-decoration: none; }
a:hover { text-decoration: underline; }
input {
border: 1px solid #999999;
font-size: smaller;
border-radius: 3px;
}
#container {
max-width: 800px;
} }
.navbar { .navbar {
background-color: #f3f2ea; margin: 0;
padding: 5px; padding: 15px;
border: 1px solid #ccc; border-bottom: 1px solid #ccc;
font: 9pt sans-serif;
margin-bottom: 10px;
} }
h2 { background-color: #f5f5f5; color: #222; } .navbar a {
hr { border: 0; background-color: #ccc; color: #ccc; height: 1px; } margin-right: 10px;
}
.page {
margin: 15px;
}
h2 {
padding: 10px;
background-color: #f5f5f5;
color: #222;
}
hr {
border: 0;
background-color: #ccc;
color: #ccc;
height: 1px;
}
</style> </style>
</head> </head>
<body> <body>
<div id="container">
<t:html t:name="navbar"/> <t:html t:name="navbar"/>
<div class="page">
<t:if t:value="articles"> <t:if t:value="articles">
<h2>Articles</h2> <h2>Articles</h2>
<ul> <ul>
@ -66,7 +103,8 @@
documentation, generated offline from a documentation, generated offline from a
<code>load-all</code> image. If you want, you can also browse the <code>load-all</code> image. If you want, you can also browse the
documentation from within the <a href="http://factorcode.org" target="_top">Factor</a> UI.</p> documentation from within the <a href="http://factorcode.org" target="_top">Factor</a> UI.</p>
</div>
</div>
</body> </body>
</html> </html>