diff mbox

[1/2] docs: move Buildroot CSS code into its own file

Message ID 1411218824-31293-2-git-send-email-thomas.petazzoni@free-electrons.com
State Accepted
Headers show

Commit Message

Thomas Petazzoni Sept. 20, 2014, 1:13 p.m. UTC
In preparation to the addition of more CSS code, this commit moves the
Buildroot site specific CSS code from header.html to a dedicated CSS
file.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 docs/css/buildroot.css | 13 +++++++++++++
 docs/header.html       | 12 +-----------
 2 files changed, 14 insertions(+), 11 deletions(-)
 create mode 100644 docs/css/buildroot.css

Comments

Thomas De Schampheleire Sept. 20, 2014, 6:30 p.m. UTC | #1
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> schreef:
>In preparation to the addition of more CSS code, this commit moves the
>Buildroot site specific CSS code from header.html to a dedicated CSS
>file.
>
>Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
>---
> docs/css/buildroot.css | 13 +++++++++++++
> docs/header.html       | 12 +-----------
> 2 files changed, 14 insertions(+), 11 deletions(-)
> create mode 100644 docs/css/buildroot.css
>
>diff --git a/docs/css/buildroot.css b/docs/css/buildroot.css
>new file mode 100644
>index 0000000..95e6e94
>--- /dev/null
>+++ b/docs/css/buildroot.css
>@@ -0,0 +1,13 @@
>+body {
>+    padding-top: 60px;
>+    padding-bottom: 40px;
>+}
>+
>+.button_column{

A space before the brace would be nice, but in any case:

Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
diff mbox

Patch

diff --git a/docs/css/buildroot.css b/docs/css/buildroot.css
new file mode 100644
index 0000000..95e6e94
--- /dev/null
+++ b/docs/css/buildroot.css
@@ -0,0 +1,13 @@ 
+body {
+    padding-top: 60px;
+    padding-bottom: 40px;
+}
+
+.button_column{
+    width: 430px;
+}
+
+.gplus {
+    float:right;
+    margin: 10px 0 0;
+}
diff --git a/docs/header.html b/docs/header.html
index c1eba22..f37759e 100644
--- a/docs/header.html
+++ b/docs/header.html
@@ -7,19 +7,9 @@ 
     <meta name="author" content="The Buildroot developers">
     <link rel="shortcut icon" href="favicon.ico">
     <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="css/buildroot.css" rel="stylesheet">
 
     <style type="text/css">
-      body {
-      padding-top: 60px;
-      padding-bottom: 40px;
-      }
-      .button_column{
-        width: 430px;
-      }
-      .gplus {
-        float:right;
-        margin: 10px 0 0;
-      }
     </style>
 
     <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->