File tree Expand file tree Collapse file tree 4 files changed +32
-3
lines changed
assets/stylesheets/new-stylesheets Expand file tree Collapse file tree 4 files changed +32
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ title: Internal Server Error
4
4
permalink : /404.html
5
5
---
6
6
7
- <section class =" section " >
8
- <h1>Not Found</h1>
9
- The page you're looking for can’t be found.
7
+ <section id =" exception " >
8
+ <div class="content">
9
+ <h1>Not Found</h1>
10
+ <p>The page you're looking for can’t be found.</p>
11
+ </div>
10
12
</section >
Original file line number Diff line number Diff line change 1
1
@use ' pages/index' ;
2
+ @use ' pages/exception' ;
2
3
@use ' pages/install' ;
3
4
@use ' pages/get-started' ;
Original file line number Diff line number Diff line change 22
22
23
23
--page-bg : #fff ;
24
24
25
+ --exception-page-bg : #fac685 ;
26
+
25
27
--install-page-bg : linear-gradient (0deg , #f6b391 0% , #f8ce6e 92% );
26
28
--install-site-code-box-bg : #ffffff ;
27
29
--install-site-code-box-pre-bg : #f2f2f2 ;
124
126
125
127
--page-bg : #fff ;
126
128
129
+ --exception-page-bg : #23344a ;
130
+
127
131
--install-page-bg : linear-gradient (0deg , #ff8115 0% , #b7451b 92% );
128
132
--install-site-code-box-bg : #23344a ;
129
133
--install-site-code-box-pre-bg : #111727 ;
Original file line number Diff line number Diff line change
1
+ #exception {
2
+ display : flex ;
3
+ flex-direction : column ;
4
+ background-color : var (--exception-page-bg );
5
+ color : var (--site-text-color );
6
+
7
+ .content {
8
+ flex-grow : 1 ;
9
+ display : flex ;
10
+ flex-direction : column ;
11
+ text-align : center ;
12
+ padding : 18vw 0 ;
13
+
14
+ h1 {
15
+ font-size : 48px ;
16
+ }
17
+
18
+ @media only screen and (max-width : 1024px ) {
19
+ margin : 90px 0 ;
20
+ }
21
+ }
22
+ }
You can’t perform that action at this time.
0 commit comments