This repository has no description
1/* ErrorPage.css */
2.error-page {
3 margin: 20px auto 20px;
4 max-width: 450px;
5 padding: 20px;
6 }
7
8 .error-content {
9 background-color: var(--navbar-bg);
10 border: 5px solid var(--card-border);
11 border-radius: 12px;
12 box-shadow: none;
13 padding: 40px;
14 text-align: center;
15 display: flex;
16 flex-direction: column;
17 transition: background-color 0.3s ease, border-color 0.3s ease;
18 }
19
20 .error-page h1 {
21 margin: 0;
22 color: var(--navbar-text);
23 transition: color 0.3s ease;
24 margin-top: 10px;
25 }
26
27 .error-message {
28 margin-top: 20px;
29 margin-bottom: 0px;
30 }
31
32 .error-message p {
33 margin: 10px 0;
34 }
35
36 .error-message ul {
37 list-style-type: disc;
38 margin: 10px 0;
39 padding-left: 20px;
40 }
41
42 .error-message li {
43 margin: 5px 0;
44 }
45
46
47 .try-another {
48 margin-bottom: 15px;
49 font-weight: 500;
50 }
51
52 .disclaimer {
53 margin-top: 20px;
54 font-size: 0.9em;
55 opacity: 0.8;
56 }