]>
Commit | Line | Data |
---|---|---|
8050f772 BB |
1 | <script> |
2 | import { _ } from 'svelte-i18n'; | |
862a5f9c | 3 | export let message; |
6347b8d9 RBR |
4 | |
5 | import { blink } from '$/animations/blink'; | |
8050f772 BB |
6 | </script> |
7 | ||
6347b8d9 | 8 | <div transition:blink> |
8050f772 | 9 | <h2>{$_('error.generic.title')}</h2> |
862a5f9c | 10 | <p>{message || $_('error.generic.message')}</p> |
8050f772 BB |
11 | </div> |
12 | ||
13 | <style> | |
14 | div { | |
15 | background: repeating-linear-gradient( -45deg, red, red 5px, black 5px, black 10px ); | |
16 | border: 5px solid red; | |
17 | color: yellow; | |
18 | font-family: 'ヒラギノ角ゴ ProN' , 'Hiragino Kaku Gothic ProN' , '游ゴシック' , '游ゴシック体' , YuGothic , 'Yu Gothic' , 'メイリオ' , Meiryo , 'MS ゴシック' , 'MS Gothic' , HiraKakuProN-W3 , 'TakaoExゴシック' , TakaoExGothic , 'MotoyaLCedar' , 'Droid Sans Japanese' , sans-serif; | |
19 | margin: 0 10px 0 0; | |
8050f772 | 20 | text-align: center; |
6347b8d9 | 21 | overflow: hidden; |
8050f772 BB |
22 | } |
23 | ||
24 | h2, p { | |
25 | background-color: black; | |
26 | font-size: 1em; | |
27 | } | |
28 | ||
29 | h2 { | |
30 | text-transform: uppercase; | |
6347b8d9 RBR |
31 | margin: 100px 5px 10px; |
32 | } | |
33 | ||
34 | p { | |
35 | margin: 10px 5px 100px; | |
8050f772 BB |
36 | } |
37 | </style> | |
38 |