mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 14:44:28 +02:00
Merge pull request #205 from arlobelshee/fixing_ie_support
Fixing ie support
This commit is contained in:
commit
3c9155064a
1 changed files with 22 additions and 22 deletions
|
@ -66,39 +66,39 @@ div.modalTerminal p {
|
||||||
html,
|
html,
|
||||||
body,
|
body,
|
||||||
.box {
|
.box {
|
||||||
display: box;
|
display: flexbox;
|
||||||
display: -moz-box;
|
display: -moz-box;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-box;
|
display: -ms-flexbox;
|
||||||
}
|
}
|
||||||
|
|
||||||
body,
|
body,
|
||||||
.flex1 {
|
.flex1 {
|
||||||
-webkit-box-flex: 1;
|
-webkit-box-flex: 1;
|
||||||
-moz-box-flex: 1;
|
-moz-box-flex: 1;
|
||||||
-ms-box-flex: 1;
|
-ms-flex: 1.0;
|
||||||
box-flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex2 {
|
.flex2 {
|
||||||
-webkit-box-flex: 2;
|
-webkit-box-flex: 2;
|
||||||
-moz-box-flex: 2;
|
-moz-box-flex: 2;
|
||||||
-ms-box-flex: 2;
|
-ms-flex: 2.0;
|
||||||
box-flex: 2;
|
flex: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex3 {
|
.flex3 {
|
||||||
-webkit-box-flex: 3;
|
-webkit-box-flex: 3;
|
||||||
-moz-box-flex: 3;
|
-moz-box-flex: 3;
|
||||||
-ms-box-flex: 3;
|
-ms-flex: 3.0;
|
||||||
box-flex: 3;
|
flex: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex10 {
|
.flex10 {
|
||||||
-webkit-box-flex: 10;
|
-webkit-box-flex: 10;
|
||||||
-moz-box-flex: 10;
|
-moz-box-flex: 10;
|
||||||
-ms-box-flex: 10;
|
-ms-flex: 10.0;
|
||||||
box-flex: 10;
|
flex: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
|
@ -106,43 +106,43 @@ body,
|
||||||
.vertical {
|
.vertical {
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
-moz-box-orient: vertical;
|
-moz-box-orient: vertical;
|
||||||
-ms-box-orient: vertical;
|
-ms-flex-direction: column;
|
||||||
box-orient: vertical;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.horizontal {
|
.horizontal {
|
||||||
-webkit-box-orient: horizontal;
|
-webkit-box-orient: horizontal;
|
||||||
-moz-box-orient: horizontal;
|
-moz-box-orient: horizontal;
|
||||||
-ms-box-orient: horizontal;
|
-ms-flex-direction: row;
|
||||||
box-orient: horizontal;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centerAlign {
|
.centerAlign {
|
||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
-moz-box-align: center;
|
-moz-box-align: center;
|
||||||
-ms-box-align: center;
|
-ms-flex-align: center;
|
||||||
box-align: center;
|
justify-content : center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.startAlign {
|
.startAlign {
|
||||||
-webkit-box-align: start;
|
-webkit-box-align: start;
|
||||||
-moz-box-align: start;
|
-moz-box-align: start;
|
||||||
-ms-box-align: start;
|
-ms-flex-align: start;
|
||||||
box-align: start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center {
|
.center {
|
||||||
-webkit-box-pack: center;
|
-webkit-box-pack: center;
|
||||||
-moz-box-pack: center;
|
-moz-box-pack: center;
|
||||||
-ms-box-pack: center;
|
-ms-flex-pack: center;
|
||||||
box-pack: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.justify {
|
.justify {
|
||||||
-webkit-box-pack: justify;
|
-webkit-box-pack: justify;
|
||||||
-moz-box-pack: justify;
|
-moz-box-pack: justify;
|
||||||
-ms-box-pack: justify;
|
-ms-flex-pack: justify;
|
||||||
box-pack: justify;
|
align-content: stretch;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Transition */
|
/* Transition */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue