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

62 行
1.0 KiB
SCSS
Raw 通常表示 履歴

2021-09-30 20:54:09 +09:00
/*
モーダルエラー
*/
.alert {
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
2021-10-05 01:17:54 +09:00
padding: 27px 16px;
2021-09-30 20:54:09 +09:00
text-align: center;
color: #fff;
font-weight: 700;
2021-10-01 18:50:43 +09:00
border-radius: 0;
2021-11-16 02:31:44 +09:00
z-index: 1000;
2021-09-30 20:54:09 +09:00
// duration | timing-function | delay | iteration-count | direction | fill-mode | play-state | name
2021-11-14 21:41:33 +09:00
animation: 1s ease-out 2s 1 normal forwards running fadeOut;
2021-10-01 18:50:43 +09:00
2021-09-30 20:54:09 +09:00
}
2021-10-05 03:15:10 +09:00
.alert-fail {
2021-09-30 20:54:09 +09:00
@extend .alert;
2021-10-01 18:50:43 +09:00
background: #D17676;
2021-09-30 20:54:09 +09:00
}
.alert-success {
@extend .alert;
2021-10-01 18:50:43 +09:00
background: #76D1C4;
2021-09-30 20:54:09 +09:00
}
/*
テキストエラー
*/
2021-10-03 02:49:31 +09:00
.l-alert__text--error {
2021-09-30 20:54:09 +09:00
display: block;
margin-top: 8px;
width: 100%;
2021-10-01 18:50:43 +09:00
padding: 8px 15px;
2021-09-30 20:54:09 +09:00
color: #ff4747;
background: #ffeaea;
}
2021-10-01 18:50:43 +09:00
2021-10-02 21:16:16 +09:00
.l-alert__text--success {
display: block;
margin-top: 8px;
width: 100%;
padding: 12px 15px;
color: black;
background: #F5F7F8;
}
2021-10-01 18:50:43 +09:00
2021-10-04 10:52:35 +09:00
2021-10-01 18:50:43 +09:00
@keyframes fadeOut {
0% {
transform: translateY(0%);
}
100% {
opacity: 0;
display: none;
transform: translateY(-100%);
}
}