Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FLUID-5618: Added 404 page and other tweaks #51

Merged
merged 3 commits into from Apr 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/ghpages-files/404.html
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Page not found | Fluid Infusion</title>
<link rel="icon" type="image/png" href="images/favico.png">
</head>
<body>

<section>
<h1>Fluid Project Documentation: Page not found</h1>

<p>Check the entered URL or go to the <a href="/">Infusion Documentation home page</a>.</p>
</section>
</body>
</html>
27 changes: 11 additions & 16 deletions src/static/css/infusion-docs.css
@@ -1,31 +1,31 @@
@font-face {
font-family: "OpenSans";
src: url("../fonts/OpenSans-Regular.ttf");
font-family: "OpenSans", Arial, Helvetica;
src: url("../fonts/OpenSans-Regular.ttf") format('truetype');
}

@font-face {
font-family: "OpenSans-Bold";
src: url("../fonts/OpenSans-Bold.ttf");
src: url("../fonts/OpenSans-Bold.ttf") format('truetype');
}

@font-face {
font-family: "OpenSans-Semibold";
src: url("../fonts/OpenSans-Semibold.ttf");
src: url("../fonts/OpenSans-Semibold.ttf") format('truetype');
}

@font-face {
font-family: "OpenSans-Light";
src: url("../fonts/OpenSans-Light.ttf");
src: url("../fonts/OpenSans-Light.ttf") format('truetype');
}

@font-face {
font-family: "RobotoSlab";
src: url("../fonts/RobotoSlab-Regular.ttf");
src: url("../fonts/RobotoSlab-Regular.ttf") format('truetype');
}

@font-face {
font-family: "RobotoSlab-Bold";
src: url("../fonts/RobotoSlab-Bold.ttf");
src: url("../fonts/RobotoSlab-Bold.ttf") format('truetype');
}

@font-face {
Expand Down Expand Up @@ -68,10 +68,6 @@ pre {
min-height: 44rem;
}

.infusion-docs a {
font-weight: bold;
}

.infusion-docs-mainContent a:hover {
color: #ffcb00;
background: #323232;
Expand Down Expand Up @@ -106,7 +102,7 @@ pre {
.infusion-docs-container .infusion-docs-header {
background-color: #323232;
height: 3.2rem;
font-family: "OpenSans";
font-family: "OpenSans", Arial, Helvetica;
font-size: 1.1rem;
text-align: right;
word-spacing: 2rem;
Expand All @@ -127,7 +123,7 @@ pre {
.infusion-docs-container .infusion-docs-fluidLogo {
text-align: left;
font-size: 1.6rem;
font-family: "OpenSans-Light";
font-family: "OpenSans-Light", Arial, Helvetica;
letter-spacing: 0.2rem;
}

Expand Down Expand Up @@ -194,7 +190,6 @@ pre {
}

.infusion-docs-container {
font-family: "OpenSans";
background-color: #f2f2f2;
}

Expand Down Expand Up @@ -271,7 +266,7 @@ div.infusion-docs-note {
}

.infusion-docs-container .infusion-docs-figureCaption {
font-family: "OpenSans";
font-family: "OpenSans", Arial, Helvetica;
font-size: 1rem;
padding-top: 1rem;
padding-left: 1.5rem;
Expand All @@ -290,7 +285,7 @@ div.infusion-docs-note {
height: 6.6rem;
padding-top: 2rem;
color: #FFFFFF;
font-family: "OpenSans";
font-family: "OpenSans", Arial, Helvetica;
font-size: 1.1rem;
text-align: center;
line-height: 0.5rem;
Expand Down