blob: aebe8dcae125f05c893116fe2726b8eeeb8664fb (
plain)
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
|
// ==========================================================================
// Errors (AWS pages)
// ==========================================================================
// Error page
html.error,
.error body {
height: 100%;
}
html.error {
background: @page-background;
background-attachment: fixed;
}
.error body {
width: 100%;
display: flex;
align-items: center;
}
.error main {
width: 100%;
padding: @spacing-base;
text-align: center;
p {
.font-size(@font-size-large);
}
}
|