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

Add CSS prefixes

parent 816159ad
Branches
Tags
No related merge requests found
......@@ -96,15 +96,29 @@ a.block-link h1 {
}
.page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100vh;
}
main {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 3em 0;
}
......@@ -124,14 +138,21 @@ footer {
}
.main-grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 2em -.5em;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.main-grid > * {
margin: .5em;
-ms-flex-preferred-size: 20em;
flex-basis: 20em;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-negative: 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