2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00
This commit is contained in:
Mark Otto
2016-11-27 22:29:55 -08:00
parent 5db88075c1
commit 4393da18f6
29 changed files with 846 additions and 1074 deletions
+14 -50
View File
@@ -1,56 +1,56 @@
.flex-xs-first {
.flex-first {
order: -1;
}
.flex-xs-last {
.flex-last {
order: 1;
}
.flex-xs-unordered {
.flex-unordered {
order: 0;
}
.flex-items-xs-top {
.flex-items-top {
align-items: flex-start;
}
.flex-items-xs-middle {
.flex-items-middle {
align-items: center;
}
.flex-items-xs-bottom {
.flex-items-bottom {
align-items: flex-end;
}
.flex-xs-top {
.flex-top {
align-self: flex-start;
}
.flex-xs-middle {
.flex-middle {
align-self: center;
}
.flex-xs-bottom {
.flex-bottom {
align-self: flex-end;
}
.flex-items-xs-left {
.flex-items-left {
justify-content: flex-start;
}
.flex-items-xs-center {
.flex-items-center {
justify-content: center;
}
.flex-items-xs-right {
.flex-items-right {
justify-content: flex-end;
}
.flex-items-xs-around {
.flex-items-around {
justify-content: space-around;
}
.flex-items-xs-between {
.flex-items-between {
justify-content: space-between;
}
@@ -64,9 +64,6 @@
.flex-sm-unordered {
order: 0;
}
}
@media (min-width: 576px) {
.flex-items-sm-top {
align-items: flex-start;
}
@@ -76,9 +73,6 @@
.flex-items-sm-bottom {
align-items: flex-end;
}
}
@media (min-width: 576px) {
.flex-sm-top {
align-self: flex-start;
}
@@ -88,9 +82,6 @@
.flex-sm-bottom {
align-self: flex-end;
}
}
@media (min-width: 576px) {
.flex-items-sm-left {
justify-content: flex-start;
}
@@ -118,9 +109,6 @@
.flex-md-unordered {
order: 0;
}
}
@media (min-width: 768px) {
.flex-items-md-top {
align-items: flex-start;
}
@@ -130,9 +118,6 @@
.flex-items-md-bottom {
align-items: flex-end;
}
}
@media (min-width: 768px) {
.flex-md-top {
align-self: flex-start;
}
@@ -142,9 +127,6 @@
.flex-md-bottom {
align-self: flex-end;
}
}
@media (min-width: 768px) {
.flex-items-md-left {
justify-content: flex-start;
}
@@ -172,9 +154,6 @@
.flex-lg-unordered {
order: 0;
}
}
@media (min-width: 992px) {
.flex-items-lg-top {
align-items: flex-start;
}
@@ -184,9 +163,6 @@
.flex-items-lg-bottom {
align-items: flex-end;
}
}
@media (min-width: 992px) {
.flex-lg-top {
align-self: flex-start;
}
@@ -196,9 +172,6 @@
.flex-lg-bottom {
align-self: flex-end;
}
}
@media (min-width: 992px) {
.flex-items-lg-left {
justify-content: flex-start;
}
@@ -226,9 +199,6 @@
.flex-xl-unordered {
order: 0;
}
}
@media (min-width: 1200px) {
.flex-items-xl-top {
align-items: flex-start;
}
@@ -238,9 +208,6 @@
.flex-items-xl-bottom {
align-items: flex-end;
}
}
@media (min-width: 1200px) {
.flex-xl-top {
align-self: flex-start;
}
@@ -250,9 +217,6 @@
.flex-xl-bottom {
align-self: flex-end;
}
}
@media (min-width: 1200px) {
.flex-items-xl-left {
justify-content: flex-start;
}
File diff suppressed because one or more lines are too long
+9 -17
View File
@@ -65,8 +65,6 @@
padding: 3rem 15px 2rem;
color: #cdbfe3;
text-align: center;
background-image: -webkit-linear-gradient(315deg, #271b38, #563d7c, #7952b3);
background-image: -o-linear-gradient(315deg, #271b38, #563d7c, #7952b3);
background-image: linear-gradient(135deg, #271b38, #563d7c, #7952b3);
}
@@ -631,9 +629,9 @@
border: 1px solid rgba(86, 61, 124, 0.2);
}
.bd-example-row .flex-items-xs-top,
.bd-example-row .flex-items-xs-middle,
.bd-example-row .flex-items-xs-bottom {
.bd-example-row .flex-items-top,
.bd-example-row .flex-items-middle,
.bd-example-row .flex-items-bottom {
min-height: 6rem;
background-color: rgba(255, 0, 0, 0.1);
}
@@ -685,8 +683,8 @@
}
.bd-example::after {
display: block;
content: "";
display: table;
clear: both;
}
@@ -1528,19 +1526,13 @@
.language-bash::before {
color: #009;
content: "$ ";
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
user-select: none;
}
.language-powershell::before {
color: #009;
content: "PM> ";
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
user-select: none;
}
.anchorjs-link {
@@ -1555,8 +1547,6 @@
*:hover > .anchorjs-link {
opacity: .75;
-webkit-transition: color .16s linear;
-o-transition: color .16s linear;
transition: color .16s linear;
}
@@ -1564,4 +1554,6 @@
.anchorjs-link:focus {
text-decoration: none;
opacity: 1;
}
}
/*# sourceMappingURL=docs.min.css.map */
File diff suppressed because one or more lines are too long