Skip to content

Instantly share code, notes, and snippets.

@alameenkhader
Created January 23, 2016 12:56
Show Gist options
  • Save alameenkhader/ca757851be40aa86938e to your computer and use it in GitHub Desktop.
Save alameenkhader/ca757851be40aa86938e to your computer and use it in GitHub Desktop.
Helper css classess
.bg-white {
background-color: #ffffff;
color: black;
}
.bg-none {
background-color: transparent;
}
.btn-center {
display: block;
margin: 0 auto;
}
@for $i from 0 through 10 {
.top#{$i * 5} {
margin-top: $i * 5px !important;
}
}
@for $i from 0 through 10 {
.right#{$i * 5} {
margin-right: $i * 5px !important;
}
}
@for $i from 0 through 10 {
.bottom#{$i * 5} {
margin-bottom: $i * 5px !important;
}
}
@for $i from 0 through 10 {
.padding#{$i * 5} {
padding: $i * 5px !important;
}
}
.pointer {
cursor: pointer !important;
}
.validation-errors {
color: red;
h2 {
font-size: 16px;
}
ul li {
list-style-type: none;
}
ul {
padding-left: 2px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment