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

72 行
1.5 KiB
SCSS

/*
モーダルエラー
*/
.alert {
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
padding: 27px 16px;
text-align: center;
color: #fff;
font-weight: 700;
border-radius: 0;
z-index: 1000;
// duration | timing-function | delay | iteration-count | direction | fill-mode | play-state | name
animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-moz-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-webkit-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
-o-animation: 1s ease-out 2s 1 normal forwards running fadeOut;
}
.alert-fail {
@extend .alert;
background: #D17676;
}
.alert-success {
@extend .alert;
background: #76D1C4;
}
/*
テキストエラー
*/
.l-alert__text--error {
display: block;
margin-top: 8px;
width: 100%;
padding: 8px 15px;
color: #ff4747;
background: #ffeaea;
}
.l-alert__text--success {
display: block;
margin-top: 8px;
width: 100%;
padding: 12px 15px;
color: black;
background: #F5F7F8;
}
@keyframes fadeOut {
0% {
transform: translateY(0%);
-moz-transform: translateY(0%);
-webkit-transform: translateY(0%);
-o-transform: translateY(0%);
}
100% {
opacity: 0;
display: none;
transform: translateY(-100%);
-moz-transform: translateY(-100%);
-webkit-transform: translateY(-100%);
-o-transform: translateY(-100%);
}
}