My _base.scss
contains the following
$blueprint-grid-columns: 12;
$blueprint-container-size: 750px;
$blueprint-grid-margin: 0px;
// Use this to calculate the width based on the total width.
// Or you can set $blueprint-grid-width to a fixed value and unset $blueprint-container-size -- it will be calculated for you.
$blueprint-grid-width: ($blueprint-container-size + $blueprint-grid-margin) / $blueprint-grid-columns - $blueprint-grid-margin;
In my page I have a big box that is 750 px
wide
#big-box {
@include container;
background-color: #FFFFFF;
margin-top: 15px;
min-height: 550px;
}
inside this box I want to have a box that is aligned in center but I can't seem to get this done. Below is my code
#login{
@include container;
margin-top: 15px;
@include column(11);
background-color: #F1F1F1;
}
what should I do so that the #login
box is in the middle?
Image of how it looks now: