made awesome font greater, added space between menu and awesome link and fixed page width

This commit is contained in:
aajjbb 2017-01-02 14:36:56 -02:00
parent 86df37bcaf
commit 898ea2754f
5 changed files with 32 additions and 10 deletions

View File

@ -1,4 +1,6 @@
# Community
<h1 id="page-id">
Community
</h1>
**awesome** has an active and growing community.

View File

@ -1,4 +1,6 @@
# Download
<h1 id="page-id">
Download
</h1>
## Stable

View File

@ -1,5 +1,9 @@
# Home
<h1 id="page-id">
Home
</h1>
**awesome** is a highly configurable, next generation framework window
manager for X. It is very fast, extensible and licensed under the
[GNU GPLv2 license](http://www.gnu.org/licenses/old-licenses/gpl-2.0.html).

View File

@ -14,7 +14,7 @@ body {
}
p {
text-align: justify;
text-align: justify;
margin: 11px 0 10px 0;
padding: 0px;
}
@ -112,9 +112,9 @@ blockquote{
#menu ul {
overflow: auto;
display: flex;
display: flex;
justify-content: center;
width: 100%;
width: 100%;
}
#menu ul {
@ -158,7 +158,7 @@ blockquote{
}
#content h2 {
margin: 0;
margin: 0;
padding: 10px 0 10px 0;
}
@ -215,11 +215,7 @@ blockquote{
}
#right .box a {
<<<<<<< HEAD
margin: 10px 0 10px 0;
=======
margin: 10px 0 10px 0;
>>>>>>> b9468c9... first redesign of the page: making a cleaner tab menu and adapting colors to match the current docs page
font-size: 10px;
}

View File

@ -158,6 +158,24 @@ href="https//awesomewm.org"></a>
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<script type="text/javascript">
var ul = document.getElementById("menu-tabs");
var items = ul.getElementsByTagName("li");
var active = document.getElementById("page-id").innerHTML;
for (var i = 0; i < items.length; i++) {
var element = items[i].getElementsByTagName("a")[0];
var sA = element.innerHTML.toLowerCase().trim();
var sB = active.toLowerCase().trim();
if (sA === sB) {
console.log("found");
element.style.color = "black";
}
}
</script>
<noscript><p><img src="https://piwik.awesomewm.org/piwik.php?idsite=26" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->