Skip to content

Instantly share code, notes, and snippets.

View httpJunkie's full-sized avatar
🏠
Working from home

Eric Bishard httpJunkie

🏠
Working from home
View GitHub Profile
@httpJunkie
httpJunkie / std-margin-and-padding-input.scss
Last active March 16, 2022 14:10
Standard margin and padding loop with Sass
$amounts: (5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 75, 100);
$sides: (top, right, bottom, left);
@each $space in $amounts {
@each $side in $sides {
.margin-#{$side}-#{$space} {
margin-#{$side}: #{$space}px !important;
}
.padding-#{$side}-#{$space} {
@httpJunkie
httpJunkie / IMessageBoardRepository
Last active August 29, 2015 14:16
Update Topic in Web API with Repository
bool EditTopic(int id, Search newSearch);