added banner information and sourcemap support

This commit is contained in:
CJ Patoilo 2015-12-26 18:41:42 -03:00
parent d9d4e3ce20
commit b6019395e3
3 changed files with 45 additions and 72 deletions

103
dist/milligram.css vendored
View File

@ -1,3 +1,12 @@
/*!
* Milligram v1.0.2
* http://milligram.github.io
*
* Copyright (c) 2015, CJ Patoilo
* Licensed under the MIT license
*/
html {
box-sizing: border-box;
font-size: 62.5%;
@ -208,19 +217,13 @@ input[type='radio'] {
}
.row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
flex-direction: column;
padding: 0;
width: 100%;
}
.row .row-wrap {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
flex-wrap: wrap;
}
.row .row-no-padding {
padding: 0;
@ -229,53 +232,35 @@ input[type='radio'] {
padding: 0;
}
.row .row-top {
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
align-items: flex-start;
}
.row .row-bottom {
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
align-items: flex-end;
}
.row .row-center {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
align-items: center;
}
.row .row-stretch {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
align-items: stretch;
}
.row .row-baseline {
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline;
align-items: baseline;
}
.row .column {
display: block;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
flex: 1;
margin-left: 0;
max-width: 100%;
width: 100%;
}
.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 {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
align-self: flex-end;
}
.row .column .col-center {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
align-self: center;
}
.row .column.column-offset-10 {
margin-left: 10%;
@ -305,77 +290,53 @@ input[type='radio'] {
margin-left: 90%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
.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%;
}
@media (min-width: 40rem) {
.row {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
flex-direction: row;
margin-left: -1rem;
width: calc(100% + 2.0rem);
}

File diff suppressed because one or more lines are too long

1
dist/milligram.min.css.map vendored Normal file

File diff suppressed because one or more lines are too long