Browse Source

404 error page added

master
Kostiantyn Pashura 8 years ago
parent
commit
84d2b79b4f
3 changed files with 26 additions and 0 deletions
  1. 11
    0
      404.html
  2. 14
    0
      css/404.scss
  3. 1
    0
      css/main.scss

+ 11
- 0
404.html View File

@@ -0,0 +1,11 @@
1
+<html>
2
+<head>
3
+    <link rel="stylesheet" href="css/all.css"/>
4
+</head>
5
+<body>
6
+    <div class="error_page">
7
+        <h2>404 Not Found</h2>
8
+        <p class="error_page__message">You can create new conversation <a href="/">here</a></p>
9
+    </div>
10
+</body>
11
+</html>

+ 14
- 0
css/404.scss View File

@@ -0,0 +1,14 @@
1
+.error_page {
2
+    width: 60%;
3
+    margin: 20% auto;
4
+    text-align: center;
5
+
6
+    h2 {
7
+        font-size: 36px;
8
+    }
9
+
10
+    &__message {
11
+        font-size: 24px;
12
+        margin-top: 20px;
13
+    }
14
+}

+ 1
- 0
css/main.scss View File

@@ -64,5 +64,6 @@
64 64
 @import "modals/invite/invite";
65 65
 @import "connection-info";
66 66
 @import 'aui-components/dropdown';
67
+@import '404';
67 68
 
68 69
 /* Modules END */

Loading…
Cancel
Save