Update class utility docs

This commit is contained in:
Michael Rose
2016-04-13 11:29:44 -04:00
parent ab244a0e13
commit 7d033d57ef
4 changed files with 186 additions and 5 deletions

View File

@ -84,12 +84,26 @@ body:hover .visually-hidden button {
Type
========================================================================== */
/* center align */
.text-left {
text-align: left;
}
.center {
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
/*
Alignment
@ -134,6 +148,14 @@ body:hover .visually-hidden button {
}
}
/* image align center */
.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
/* file page content container */
.full {

File diff suppressed because one or more lines are too long