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

86 行
2.3 KiB
SCSS
Raw 通常表示 履歴

2021-09-29 22:23:02 +09:00
@charset "UTF-8";
2021-09-29 23:52:07 +09:00
@mixin pc($breakpoint: $_default-breakpoint) {
@if map-has-key($_breakpoint-up, $breakpoint) {
@media screen and (min-width: 1068px) {
2021-09-29 22:23:02 +09:00
@content;
2021-09-29 23:52:07 +09:00
}
} @else {
@warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
+ "Please make sure it is defined in `$_breakpoint-up` map.";
2021-09-29 22:23:02 +09:00
}
2021-09-29 23:52:07 +09:00
}
2021-09-29 22:23:02 +09:00
2021-09-29 23:52:07 +09:00
@mixin sp($breakpoint: $_default-breakpoint) {
@if map-has-key($_breakpoint-down, $breakpoint) {
@media screen and (max-width: 1067px) {
@content;
}
} @else {
@warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
+ "Please make sure it is defined in `$_breakpoint-down` map.";
}
}
@mixin sp02($breakpoint: $_default-breakpoint) {
@if map-has-key($_breakpoint-down, $breakpoint) {
@media screen and (max-width: 430px) {
2021-09-29 22:23:02 +09:00
@content;
2021-09-29 23:52:07 +09:00
}
} @else {
@warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
+ "Please make sure it is defined in `$_breakpoint-down` map.";
2021-09-29 22:23:02 +09:00
}
2021-09-29 23:52:07 +09:00
}
@mixin min($breakpoint: $_default-breakpoint) {
@if map-has-key($_breakpoint-down, $breakpoint) {
@media screen and (max-width: 374px) {
@content;
}
} @else {
@warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
+ "Please make sure it is defined in `$_breakpoint-down` map.";
}
}
2021-09-29 22:23:02 +09:00
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Bootstrap
2021-09-29 23:52:07 +09:00
@import '~bootstrap/scss/bootstrap';
2021-09-29 22:23:02 +09:00
/* ---------------------------------------------------------------------------------
color
--------------------------------------------------------------------------------- */
/* color */
$colorRed: #af0606;
$colorBlue: #004DC7;
$colorBlack: #000000;
$colorGray: #B2B2B2;
/* border color */
$borderColorGray: #eeeeee;
/* input color */
$inputBorderGray: #D8D8D8;
/* ---------------------------------------------------------------------------------
foundation
--------------------------------------------------------------------------------- */
/* base */
/* ---------------------------------------------------------------------------------
layout
--------------------------------------------------------------------------------- */
2021-09-29 23:52:07 +09:00
// @import "./variables";
2021-09-29 22:23:02 +09:00
2021-09-29 23:52:07 +09:00
// @import "./layout/_main";
2021-09-29 22:23:02 +09:00