docs: simplify css-centering
authorErik Faye-Lund <erik.faye-lund@collabora.com>
Wed, 17 Apr 2019 12:46:00 +0000 (14:46 +0200)
committerErik Faye-Lund <erik.faye-lund@collabora.com>
Thu, 2 May 2019 08:45:57 +0000 (08:45 +0000)
With "display: flex;" we can make this a bit more automatic, not
requiring a bunch of values to be of specific values to get the right
centering.

Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
docs/mesa.css

index 06e94c5..d625f61 100644 (file)
@@ -44,13 +44,12 @@ iframe {
 .header {
        background: url('gears.png') 15px no-repeat, black url('gears.png') right no-repeat;
        height: 80px;
+       display: flex;
+       text-align: center;
 }
 
 .header h1 {
        color: white;
        font: x-large sans-serif;
-       text-align: center;
-       height: 50px;
-       margin: 0;
-       padding-top: 30px;
+       margin: auto;
 }