Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

32
sass/components/_button.scss Executable file
View File

@@ -0,0 +1,32 @@
/*------------------------------------------------------------------
[Button]
------------------------------------------------------------------*/
.btn-theme {
@include button();
}
.btn-icon {
@include position(relative, $top: 1px);
margin-right: 10px;
}
.btn-white-bg {
@include button-color($color-heading, $color-white, $color-white, $color-base, 0, transparent, transparent);
}
.btn-white-brd {
@include button-color($color-white, $color-heading, transparent, $color-white, 2px, $color-white, $color-white);
}
.btn-default-bg {
@include button-color($color-heading, $color-white, #f3f4f5, $color-base, 0, transparent, transparent);
}
.btn-theme-sm {
@include button-size(13px, 600, 15px 40px);
}
.btn-theme-md {
@include button-size(15px, 600, 20px 30px);
}