1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-08-28 08:10:23 +02:00

Grid reordering classes

This commit is contained in:
Angelos Chalaris
2016-11-11 12:39:39 +02:00
parent a2bc9e4835
commit 1c7e57c1bd
6 changed files with 119 additions and 4 deletions

View File

@@ -29,6 +29,7 @@
}
.box-centered { text-align: center; }
.box-colored { background: #0277bd; border-radius: 2px; padding: 14px; margin-bottom: 8px; min-height: 14px;}
.box-colored.red { background: #b71c1c; }
</style>
</head>
<body>
@@ -206,6 +207,17 @@
<div class="box-colored"></div>
</div>
</div>
<div class="row">
<div class="col-sm col-md-6 col-lg">
<div class="box-colored"></div>
</div>
<div class="col-sm col-sm-first col-md-normal col-lg-last">
<div class="box-colored red"></div>
</div>
<div class="col-sm col-lg-6">
<div class="box-colored"></div>
</div>
</div>
</div>
</div>
</div>