You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
594 B
SCSS
35 lines
594 B
SCSS
/* Utilities */
|
|
.hidden{display:none;}
|
|
.tac{text-align:center;}
|
|
|
|
.vh{
|
|
position:absolute;
|
|
clip:rect(1px,1px,1px,1px);
|
|
height:1px;width:1px;
|
|
padding:2px 8px;overflow:hidden;
|
|
white-space:nowrap;
|
|
background:$white;z-index:10}
|
|
.vh:focus{
|
|
clip:auto;overflow:auto;
|
|
height:auto;width:auto}
|
|
|
|
.u-full-width {
|
|
width: 100%;
|
|
box-sizing: border-box; }
|
|
.u-max-full-width {
|
|
max-width: 100%;
|
|
box-sizing: border-box; }
|
|
.u-pull-right {
|
|
float: right; }
|
|
.u-pull-left {
|
|
float: left; }
|
|
|
|
/* Self Clearing Goodness */
|
|
.container:after,
|
|
.row:after,
|
|
.u-cf {
|
|
content: "";
|
|
display: table;
|
|
clear: both; }
|
|
|