/*
Social Media Colors
v0.0.1
Created By: JDsWebService
Author Link: http://github.com/jdswebservice
Description: Main Core File
*/

/*
Import All Files & Define Global Variables
 */
@import 'modules/colors';
@import 'modules/mixins';
@import 'modules/buttons';
/*
Import Font Families
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*
Define Main Class
 */
.btn.btn-social {
    @include btn-social;
}
/*
Define Font Weight Mutators
 */
.social-100 {
    font-weight: 100 !important;
}
.social-400 {
    font-weight: 400 !important;
}
.social-500 {
    font-weight: 500 !important;
}
.social-700 {
    font-weight: 700 !important;
}
.social-900 {
    font-weight: 900 !important;
}

