added banner information and sourcemap support
This commit is contained in:
parent
d9d4e3ce20
commit
b6019395e3
57
dist/milligram.css
vendored
57
dist/milligram.css
vendored
@ -1,3 +1,12 @@
|
|||||||
|
/*!
|
||||||
|
* Milligram v1.0.2
|
||||||
|
* http://milligram.github.io
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015, CJ Patoilo
|
||||||
|
* Licensed under the MIT license
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 62.5%;
|
font-size: 62.5%;
|
||||||
@ -208,18 +217,12 @@ input[type='radio'] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.row .row-wrap {
|
.row .row-wrap {
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
.row .row-no-padding {
|
.row .row-no-padding {
|
||||||
@ -229,52 +232,34 @@ input[type='radio'] {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.row .row-top {
|
.row .row-top {
|
||||||
-webkit-align-items: flex-start;
|
|
||||||
-ms-flex-align: start;
|
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
.row .row-bottom {
|
.row .row-bottom {
|
||||||
-webkit-align-items: flex-end;
|
|
||||||
-ms-flex-align: end;
|
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
.row .row-center {
|
.row .row-center {
|
||||||
-webkit-align-items: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.row .row-stretch {
|
.row .row-stretch {
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
.row .row-baseline {
|
.row .row-baseline {
|
||||||
-webkit-align-items: baseline;
|
|
||||||
-ms-flex-align: baseline;
|
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
}
|
}
|
||||||
.row .column {
|
.row .column {
|
||||||
display: block;
|
display: block;
|
||||||
-webkit-flex: 1;
|
|
||||||
-ms-flex: 1;
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.row .column .col-top {
|
.row .column .col-top {
|
||||||
-webkit-align-self: flex-start;
|
|
||||||
-ms-flex-item-align: start;
|
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
}
|
}
|
||||||
.row .column .col-bottom {
|
.row .column .col-bottom {
|
||||||
-webkit-align-self: flex-end;
|
|
||||||
-ms-flex-item-align: end;
|
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
}
|
}
|
||||||
.row .column .col-center {
|
.row .column .col-center {
|
||||||
-webkit-align-self: center;
|
|
||||||
-ms-flex-item-align: center;
|
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
.row .column.column-offset-10 {
|
.row .column.column-offset-10 {
|
||||||
@ -305,76 +290,52 @@ input[type='radio'] {
|
|||||||
margin-left: 90%;
|
margin-left: 90%;
|
||||||
}
|
}
|
||||||
.row .column.column-10 {
|
.row .column.column-10 {
|
||||||
-webkit-flex: 0 0 10%;
|
|
||||||
-ms-flex: 0 0 10%;
|
|
||||||
flex: 0 0 10%;
|
flex: 0 0 10%;
|
||||||
max-width: 10%;
|
max-width: 10%;
|
||||||
}
|
}
|
||||||
.row .column.column-20 {
|
.row .column.column-20 {
|
||||||
-webkit-flex: 0 0 20%;
|
|
||||||
-ms-flex: 0 0 20%;
|
|
||||||
flex: 0 0 20%;
|
flex: 0 0 20%;
|
||||||
max-width: 20%;
|
max-width: 20%;
|
||||||
}
|
}
|
||||||
.row .column.column-25 {
|
.row .column.column-25 {
|
||||||
-webkit-flex: 0 0 25%;
|
|
||||||
-ms-flex: 0 0 25%;
|
|
||||||
flex: 0 0 25%;
|
flex: 0 0 25%;
|
||||||
max-width: 25%;
|
max-width: 25%;
|
||||||
}
|
}
|
||||||
.row .column.column-33, .row .column.column-34 {
|
.row .column.column-33, .row .column.column-34 {
|
||||||
-webkit-flex: 0 0 33.3333%;
|
|
||||||
-ms-flex: 0 0 33.3333%;
|
|
||||||
flex: 0 0 33.3333%;
|
flex: 0 0 33.3333%;
|
||||||
max-width: 33.3333%;
|
max-width: 33.3333%;
|
||||||
}
|
}
|
||||||
.row .column.column-40 {
|
.row .column.column-40 {
|
||||||
-webkit-flex: 0 0 40%;
|
|
||||||
-ms-flex: 0 0 40%;
|
|
||||||
flex: 0 0 40%;
|
flex: 0 0 40%;
|
||||||
max-width: 40%;
|
max-width: 40%;
|
||||||
}
|
}
|
||||||
.row .column.column-50 {
|
.row .column.column-50 {
|
||||||
-webkit-flex: 0 0 50%;
|
|
||||||
-ms-flex: 0 0 50%;
|
|
||||||
flex: 0 0 50%;
|
flex: 0 0 50%;
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
}
|
}
|
||||||
.row .column.column-60 {
|
.row .column.column-60 {
|
||||||
-webkit-flex: 0 0 60%;
|
|
||||||
-ms-flex: 0 0 60%;
|
|
||||||
flex: 0 0 60%;
|
flex: 0 0 60%;
|
||||||
max-width: 60%;
|
max-width: 60%;
|
||||||
}
|
}
|
||||||
.row .column.column-66, .row .column.column-67 {
|
.row .column.column-66, .row .column.column-67 {
|
||||||
-webkit-flex: 0 0 66.6666%;
|
|
||||||
-ms-flex: 0 0 66.6666%;
|
|
||||||
flex: 0 0 66.6666%;
|
flex: 0 0 66.6666%;
|
||||||
max-width: 66.6666%;
|
max-width: 66.6666%;
|
||||||
}
|
}
|
||||||
.row .column.column-75 {
|
.row .column.column-75 {
|
||||||
-webkit-flex: 0 0 75%;
|
|
||||||
-ms-flex: 0 0 75%;
|
|
||||||
flex: 0 0 75%;
|
flex: 0 0 75%;
|
||||||
max-width: 75%;
|
max-width: 75%;
|
||||||
}
|
}
|
||||||
.row .column.column-80 {
|
.row .column.column-80 {
|
||||||
-webkit-flex: 0 0 80%;
|
|
||||||
-ms-flex: 0 0 80%;
|
|
||||||
flex: 0 0 80%;
|
flex: 0 0 80%;
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
}
|
}
|
||||||
.row .column.column-90 {
|
.row .column.column-90 {
|
||||||
-webkit-flex: 0 0 90%;
|
|
||||||
-ms-flex: 0 0 90%;
|
|
||||||
flex: 0 0 90%;
|
flex: 0 0 90%;
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 40rem) {
|
@media (min-width: 40rem) {
|
||||||
.row {
|
.row {
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin-left: -1rem;
|
margin-left: -1rem;
|
||||||
width: calc(100% + 2.0rem);
|
width: calc(100% + 2.0rem);
|
||||||
|
13
dist/milligram.min.css
vendored
13
dist/milligram.min.css
vendored
File diff suppressed because one or more lines are too long
1
dist/milligram.min.css.map
vendored
Normal file
1
dist/milligram.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user