sharing and UX improvements

This commit is contained in:
glmdev
2019-06-23 12:17:35 -05:00
parent 1bd6ad1830
commit 2a80e65c35
14 changed files with 473 additions and 56 deletions

33
app/views/errors/401.pug Normal file
View 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.")}

View File

@@ -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.")}