Browse Source

fixed some safari flex problems

pull/24/head
Guillermo 10 years ago
parent
commit
2d85c0fbe8
  1. 12
      css/wau.css

12
css/wau.css

@ -21,6 +21,7 @@
font-size: initial; font-size: initial;
line-height: 1.5em; line-height: 1.5em;
flex-grow:1; flex-grow:1;
-webkit-flex-grow:1;
} }
.footer { .footer {
width: 100%; width: 100%;
@ -157,6 +158,7 @@ svg {
.langlabel { .langlabel {
display: inline-block; display: inline-block;
flex-grow: 1; flex-grow: 1;
-webkit-flex-grow: 1;
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
@ -188,9 +190,12 @@ svg {
#wow .demofooter { #wow .demofooter {
display: flex; display: flex;
display: -webkit-flex;
padding: 0px; padding: 0px;
justify-content: space-between; justify-content: space-between;
-webkit-justify-content: space-between;
align-items: center; align-items: center;
-webkit-align-items: center;
} }
#logo { #logo {
text-align: center; text-align: center;
@ -318,9 +323,12 @@ svg {
} }
.two { .two {
width: 100%; width: 100%;
display: -webkit-flex;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
-webkit-flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
-webkit-justify-content: space-between;
max-width: 1100px; max-width: 1100px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@ -342,7 +350,10 @@ hr {
} }
.manylangs{ .manylangs{
display: flex; display: flex;
display: -webkit-flex;
flex-wrap: wrap; flex-wrap: wrap;
-webkit-flex-wrap: wrap;
} }
body { body {
padding: 0px; padding: 0px;
@ -401,6 +412,7 @@ button:hover {
} }
.two { .two {
justify-content: space-around; justify-content: space-around;
-webkit-justify-content: space-around;
} }
#code { #code {
margin-top: 20px; margin-top: 20px;

Loading…
Cancel
Save