Commit da9ab5e2 authored by Angelo Compagnucci's avatar Angelo Compagnucci Committed by Thomas Petazzoni
Browse files

docs: responsive web design website



This patch migrate the layout to a responsive web design one.

* Fixing the layout of all pages to be fully responsive
* Adding panels around "Recent commints" and "Recent discussion"
* Adding fonts for glyphs in buttons

Signed-off-by: default avatarAngelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent e40b9791
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
<!--#include file="header.html" -->

<div align="center">
  <img src="images/menuconfig.png" width="340" height="220" alt="Buildroot menuconfig" border="0">
<div class="row">
  <div class="col-sm-6 col-sm-offset-3" style="padding-bottom:10px">
    <img class="center-block" src="images/menuconfig.png"
    style="max-width:100%;"
    alt="Buildroot menuconfig" border="0">
  </div>
<div class="col-sm-10 col-sm-offset-1">

<p>Buildroot is a set of Makefiles and patches that makes it easy to
generate a complete embedded Linux system. Buildroot can generate any
@@ -52,4 +56,7 @@ cross-compilation process.</p>
GENERAL PUBLIC LICENSE V2 (Or later)</a>. Stable releases are
delivered every three months.</p>

</div><!--/.col-sm-10 -->
</div><!--/.row -->

<!--#include file="footer.html" -->
+6 −0
Original line number Diff line number Diff line
<!--#include file="header.html" -->

<div class="row">
<div class="col-sm-10 col-sm-offset-1">

<h2>Contribute</h2>

<p>Buildroot is an open source project and you are very welcome to contribute to
@@ -29,4 +32,7 @@ Contributing to buildroot</a> chapter in the Buildroot manual. Thanks for your h
<p>If you need any support yourself, have a look at <a href="./support.html">
Support</a>.</p>

</div><!--/.col-sm-10 -->
</div><!--/.row -->

<!--#include file="footer.html" -->
+12 −2
Original line number Diff line number Diff line
@@ -14,23 +14,33 @@ body {

div.sponsor-main {
    background: #eeeeee;
    padding: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}

div.sponsor {
    background: #eeeeee;
    padding: 0.5em;
    height: 12em;
    display: table !important;
}

div.sponsor-description {
    background: #eeeeee;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

div.sponsor-description img {
    max-width: 99%;
    height: 4em;
    margin-bottom: 1em;
}

div.panel-body p {
    text-overflow: ellipsis;
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    height: 1.5em;
}
+6 −0
Original line number Diff line number Diff line
<!--#include file="header.html" -->

<div class="row">
<div class="col-sm-10 col-sm-offset-1">

<h2>Documentation</h2>

<p>The Buildroot user manual is where you want to start reading if you
@@ -41,5 +44,8 @@ help:</p>

</ul>

</div><!--/.col-sm-10 -->
</div><!--/.row -->

<!--#include file="footer.html" -->
+6 −0
Original line number Diff line number Diff line
<!--#include file="header.html" -->

<div class="row">
<div class="col-sm-10 col-sm-offset-1">

<h2>Download</h2>

<p>
@@ -83,4 +86,7 @@ Because you've only been granted anonymous access to the tree, you won't be
able to push your changes to the repo. Changes can instead be submitted for
inclusion by posting them to the buildroot mailing list.

</div><!--/.col-sm-10 -->
</div><!--/.row -->

<!--#include file="footer.html" -->
Loading