118 lines
1.5 KiB
SCSS
118 lines
1.5 KiB
SCSS
//
|
|
// _helper.scss
|
|
//
|
|
|
|
.font-size-10 {
|
|
font-size: 10px !important;
|
|
}
|
|
|
|
.font-size-11 {
|
|
font-size: 11px !important;
|
|
}
|
|
|
|
.font-size-12 {
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.font-size-13 {
|
|
font-size: 13px !important;
|
|
}
|
|
|
|
.font-size-14 {
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
.font-size-15 {
|
|
font-size: 15px !important;
|
|
}
|
|
|
|
.font-size-16 {
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
.font-size-17 {
|
|
font-size: 17px !important;
|
|
}
|
|
|
|
.font-size-18 {
|
|
font-size: 18px !important;
|
|
}
|
|
|
|
.font-size-20 {
|
|
font-size: 20px !important;
|
|
}
|
|
|
|
.font-size-22 {
|
|
font-size: 22px !important;
|
|
}
|
|
|
|
.font-size-24 {
|
|
font-size: 24px !important;
|
|
}
|
|
|
|
// Font weight help class
|
|
|
|
.fw-medium {
|
|
font-weight: $fw-medium;
|
|
}
|
|
|
|
.font-weight-semibold {
|
|
font-weight: $font-weight-semibold;
|
|
}
|
|
|
|
// Social
|
|
|
|
.social-list-item {
|
|
height: 2rem;
|
|
width: 2rem;
|
|
line-height: calc(2rem - 4px);
|
|
display: block;
|
|
border: 2px solid $gray-500;
|
|
border-radius: 50%;
|
|
color: $gray-500;
|
|
text-align: center;
|
|
transition: all 0.4s;
|
|
&:hover{
|
|
color: $gray-600;
|
|
background-color: $gray-200;
|
|
}
|
|
}
|
|
|
|
|
|
.w-xs {
|
|
min-width: 80px;
|
|
}
|
|
.w-sm {
|
|
min-width: 95px;
|
|
}
|
|
.w-md {
|
|
min-width: 110px;
|
|
}
|
|
.w-lg {
|
|
min-width: 140px;
|
|
}
|
|
|
|
.w-xl {
|
|
min-width: 160px;
|
|
}
|
|
|
|
// media
|
|
|
|
.media{
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.media-body {
|
|
flex: 1;
|
|
}
|
|
|
|
// alert
|
|
|
|
.alert-dismissible {
|
|
.btn-close{
|
|
font-size: 10px;
|
|
padding: $alert-padding-y * 1.4 $alert-padding-x;
|
|
background: transparent escape-svg($btn-close-bg-dark) center / $btn-close-width auto no-repeat;
|
|
}
|
|
} |