このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/sass/base/_typography.scss

60 行
1.3 KiB
SCSS
Raw 通常表示 履歴

2021-09-30 16:50:44 +09:00
.shadow-lg{ box-shadow: 0 0 8px #000 !important; }
.w-30{ width: 30% !important; }
.w-md-25{
@include media-breakpoint-down(md){
width: 25% !important;
}
}
.w-md-50{
@include media-breakpoint-down(md){
width: 50% !important;
}
}
.w-md-75{
@include media-breakpoint-down(md){
width: 75% !important;
}
}
.rounded-right-20{
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.rounded-top-15{
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}
.rounded-15{
border-radius: 15px !important;
}
.rounded-20{
border-radius: 20px !important;
}
.rounded-top-20{
border-top-right-radius: 20px;
border-top-left-radius: 20px;
}
2021-10-02 12:19:28 +09:00
.mt-80-px{ margin-top: 80px !important; }
.mt-50-px{ margin-top: 50px !important; }
.mt-40-px{ margin-top: 40px !important; }
2021-10-03 15:26:02 +09:00
.mt-25-px{ margin-top: 25px !important; }
.mb-80-px{ margin-bottom: 80px !important; }
.mb-50-px{ margin-bottom: 50px !important; }
.mb-40-px{ margin-bottom: 40px !important; }
.mb-25-px{ margin-bottom: 25px !important; }
.pb-80-px{ padding-bottom: 80px !important; }
.pb-50-px{ padding-bottom: 50px !important; }
.pb-40-px{ padding-bottom: 40px !important; }
.pb-25-px{ padding-bottom: 25px !important; }