forked from mongodb/docs-sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.module.css
More file actions
91 lines (80 loc) · 1.44 KB
/
error.module.css
File metadata and controls
91 lines (80 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
text-align: center;
background: #fafafa;
}
.errorCard {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 500px;
width: 100%;
}
.title {
font-size: 2rem;
margin: 0 0 1rem 0;
color: #dc3545;
font-weight: 600;
}
.description {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
line-height: 1.5;
}
.buttonContainer {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.retryButton {
background: #0070f3;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
text-decoration: none;
transition: background-color 0.2s ease;
}
.retryButton:hover {
background: #0051cc;
}
.retryButton:focus {
outline: 2px solid #0070f3;
outline-offset: 2px;
}
.backLink {
background: #6c757d;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-size: 1rem;
font-weight: 500;
text-decoration: none;
transition: background-color 0.2s ease;
display: inline-block;
}
.backLink:hover {
background: #545b62;
}
.backLink:focus {
outline: 2px solid #6c757d;
outline-offset: 2px;
}
.errorId {
font-size: 0.8rem;
color: #999;
margin-top: 2rem;
font-family: 'Courier New', monospace;
}