This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add help page and links
- Loading branch information
Showing
7 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,8 @@ | |
li { | ||
font-size: 20px; | ||
} | ||
|
||
a { | ||
text-decoration: underline; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<html> | ||
<head> | ||
<title>Cerberus Management Dashboard Help</title> | ||
<link rel="stylesheet" href="//web.nike.com/ncss/0.12/snkrs/desktop/css/ncss.en-us.min.css"> | ||
<link rel="stylesheet" href="./main.css"> | ||
<link rel="icon" href=../favicon.ico?v1" /> | ||
</head> | ||
<body> | ||
<div id="content-wrapper"> | ||
<div id="content"> | ||
<h2>Cerberus Management Dashboard Help</h2> | ||
<h3>Documentation is located on the <a target="_blank" href="http://engineering.nike.com/cerberus/docs/">Nike Engineering Cerberus site</a></h3> | ||
<p>This file is static and the publish-dashboard command allows you to override it with a new html file with help specific to your org</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#content-wrapper { | ||
background-color: #222222; | ||
width: 100%; | ||
height: 100%; | ||
|
||
padding: 20px; | ||
|
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
#content { | ||
background-color: #f2f2f2; | ||
width: 1000px; | ||
height: 100%; | ||
color: #222222; | ||
font-size: 40px; | ||
font-weight: bold; | ||
|
||
padding: 20px; | ||
} | ||
|
||
a { | ||
text-decoration: underline; | ||
color: grey; | ||
} | ||
|
||
h3 { | ||
padding-top: 5px; | ||
padding-left: 15px; | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
padding-top: 5px; | ||
padding-left: 20px; | ||
} |