forked from mongodb/docs-sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot-found.module.css
More file actions
50 lines (44 loc) · 762 Bytes
/
not-found.module.css
File metadata and controls
50 lines (44 loc) · 762 Bytes
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
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
text-align: center;
}
.errorCode {
font-size: 4rem;
margin: 0 0 1rem 0;
color: #333;
font-weight: bold;
}
.title {
font-size: 1.5rem;
margin: 0 0 1rem 0;
color: #666;
font-weight: 600;
}
.description {
font-size: 1.1rem;
color: #888;
margin-bottom: 2rem;
max-width: 500px;
line-height: 1.5;
}
.backLink {
color: #0070f3;
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
transition: color 0.2s ease;
}
.backLink:hover {
color: #0051cc;
text-decoration: underline;
}
.backLink:focus {
outline: 2px solid #0070f3;
outline-offset: 2px;
border-radius: 4px;
}