Skip to content
Snippets Groups Projects
Commit ee846e00 authored by waffle's avatar waffle
Browse files

Add CSS prefixes

parent 816159ad
No related branches found
No related tags found
No related merge requests found
...@@ -96,15 +96,29 @@ a.block-link h1 { ...@@ -96,15 +96,29 @@ a.block-link h1 {
} }
.page { .page {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; flex-direction: column;
min-height: 100vh; min-height: 100vh;
} }
main { main {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1; flex-grow: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; justify-content: center;
padding: 3em 0; padding: 3em 0;
} }
...@@ -124,14 +138,21 @@ footer { ...@@ -124,14 +138,21 @@ footer {
} }
.main-grid { .main-grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
margin: 2em -.5em; margin: 2em -.5em;
-ms-flex-wrap: wrap;
flex-wrap: wrap; flex-wrap: wrap;
} }
.main-grid > * { .main-grid > * {
margin: .5em; margin: .5em;
-ms-flex-preferred-size: 20em;
flex-basis: 20em; flex-basis: 20em;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1; flex-grow: 1;
-ms-flex-negative: 0;
flex-shrink: 0; flex-shrink: 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment