sharing and UX improvements
This commit is contained in:
33
app/views/errors/401.pug
Normal file
33
app/views/errors/401.pug
Normal file
@@ -0,0 +1,33 @@
|
||||
html
|
||||
head
|
||||
title Access Denied | Flitter
|
||||
style(type="text/css").
|
||||
@import url('https://fonts.googleapis.com/css?family=Rajdhani');
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
overflow-y: hidden;
|
||||
background-color: #c7dbdf;
|
||||
}
|
||||
|
||||
.flitter-container {
|
||||
height: 60%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.flitter-image {
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.flitter-name {
|
||||
font-family: "Rajdhani";
|
||||
font-size: 36pt;
|
||||
margin-left: 35px;
|
||||
color: #00323d;
|
||||
}
|
||||
body
|
||||
.flitter-container
|
||||
img.flitter-image(src="/assets/flitter.png")
|
||||
p.flitter-name Access Denied: #{(reason ? reason : "Resource Not Found.")}
|
||||
@@ -23,11 +23,11 @@ html
|
||||
|
||||
.flitter-name {
|
||||
font-family: "Rajdhani";
|
||||
font-size: 50pt;
|
||||
font-size: 36pt;
|
||||
margin-left: 35px;
|
||||
color: #00323d;
|
||||
}
|
||||
body
|
||||
.flitter-container
|
||||
img.flitter-image(src="/assets/flitter.png")
|
||||
p.flitter-name 404: Page Not Found
|
||||
p.flitter-name 404: #{(reason ? reason : "Resource Not Found.")}
|
||||
|
||||
Reference in New Issue
Block a user