-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1509db
commit 59f7996
Showing
7 changed files
with
227 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
*# | ||
*.html | ||
*.swp | ||
*~ | ||
.DS_Store | ||
output |
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,12 @@ | ||
<span class="dropdown-3">APIS | ||
<div class="dropdown-3-content"> | ||
<p><b>RAML APIs for {{ site.default_tree | remove_first: "branches/"| remove_first: "releases/" }}</b></p> | ||
{% for api in site.data.apis %} | ||
<p><a href="{{ site.baseurl }}/{{ site.default_tree }}/APIs/{{ api.file }}">{{ api.name }}</a></p> | ||
{% endfor %} | ||
<p><b>JSON Schemas for {{ site.default_tree | remove_first: "branches/"| remove_first: "releases/" }}</b></p> | ||
{% for schema in site.data.schemas %} | ||
<p><a href="{{ site.baseurl }}/{{ site.default_tree }}/APIs/schemas/with-refs/{{ schema.file }}">{{ schema.name }}</a></p> | ||
{% endfor %} | ||
</div> | ||
</span> |
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,8 @@ | ||
<span class="dropdown-3">EXAMPLES | ||
<div class="dropdown-3-content"> | ||
<p><b>JSON Examples for {{ site.default_tree | remove_first: "branches/"| remove_first: "releases/" }}</b></p> | ||
{% for example in site.data.examples %} | ||
<p><a href="{{ site.baseurl }}/{{ site.default_tree }}/examples/{{ example.file }}">{{ example.name }}</a></p> | ||
{% endfor %} | ||
</div> | ||
</span> |
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,201 @@ | ||
--- | ||
--- | ||
|
||
@import "{{ site.theme }}"; | ||
|
||
$dark: #418ab3; | ||
$mid_dark: #6faacb; | ||
$mid_light: #a5cadf; | ||
$light: #d1e4ef; | ||
|
||
body { | ||
margin: 0; | ||
background-color: white; | ||
font-family: Verdana, Geneva, Tahoma, sans-serif; | ||
} | ||
|
||
a { | ||
color: $dark; | ||
} | ||
|
||
h1 { | ||
color: $dark; | ||
text-align: center; | ||
} | ||
|
||
.markdown-body { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
.markdown-body p { | ||
font-family: Verdana, Geneva, sans-serif; | ||
font-size: 100%; | ||
} | ||
|
||
.markdown-body h1 { | ||
font-size: 180%; | ||
} | ||
|
||
.markdown-body h2 { | ||
font-size: 150%; | ||
} | ||
|
||
.markdown-body h3 { | ||
font-size: 130%; | ||
} | ||
|
||
#logo-banner { | ||
display: table; | ||
width: 1024px; | ||
background-color: $dark; | ||
|
||
#nmos-logo { | ||
display: table-cell; | ||
width: 191px; | ||
height: 64px; | ||
margin: 10px; | ||
background-color: $dark; | ||
} | ||
|
||
#amwa-logo { | ||
display: table-cell; | ||
width: 191px; | ||
height: 64px; | ||
margin: 10px; | ||
background-color: $dark; | ||
} | ||
|
||
#title { | ||
display: table-cell; | ||
text-align: center; | ||
vertical-align: middle; | ||
font-size: 175%; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
color: $light; | ||
background-color: $dark; | ||
} | ||
|
||
#from-amwa-logo { | ||
display: table-cell; | ||
align-self: center; | ||
width: 243px; | ||
height: 64px; | ||
margin: 10px; | ||
background-color: $dark; | ||
} | ||
} | ||
|
||
.header { | ||
{% if site.amwa_id contains "IS-" or site.amwa_id contains "MS-" %} | ||
height: 88px; | ||
{% else %} | ||
height: 48px; | ||
{% endif %} | ||
line-height: 48px; | ||
width: 1024px; | ||
font-size: 100%; | ||
background: $mid_light; | ||
z-index: 1; | ||
|
||
a { | ||
display: inline-block; | ||
vertical-align: middle; | ||
line-height: normal; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
color: $dark; | ||
} | ||
|
||
.dropdown { | ||
display: inline-block; | ||
vertical-align: middle; | ||
line-height: normal; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
color: $dark; | ||
} | ||
|
||
.dropdown-content { | ||
display: none; | ||
position: absolute; | ||
background-color: $light; | ||
min-width: 100px; | ||
padding: 12px 16px; | ||
z-index: 7; | ||
font-size: 80%; | ||
} | ||
|
||
.dropdown:hover .dropdown-content { | ||
display: block; | ||
} | ||
|
||
|
||
|
||
.dropdown-3 { | ||
display: inline-block; | ||
vertical-align: middle; | ||
line-height: normal; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
color: $dark; | ||
} | ||
|
||
|
||
.dropdown-3-content { | ||
display: none; | ||
position: absolute; | ||
background-color: $light; | ||
min-width: 100px; | ||
padding: 12px 16px; | ||
z-index: 7; | ||
font-size: 80%; | ||
column-count: 3; | ||
max-height: 800px; | ||
} | ||
|
||
|
||
.dropdown-3:hover .dropdown-3-content { | ||
display: block; | ||
} | ||
|
||
.breadcrumbs { | ||
height: 40px; | ||
line-height: 40px; | ||
background: $light; | ||
|
||
a { | ||
color: $dark; | ||
} | ||
} | ||
|
||
.version-warning { | ||
background-color: #eea892; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
|
||
a { | ||
color: #df5327; | ||
} | ||
} | ||
|
||
} | ||
|
||
|
||
.content { | ||
padding: 16px; | ||
} | ||
|
||
.sticky { | ||
position: fixed; | ||
top: 0; | ||
width: 1024px; | ||
} | ||
|
||
.sticky + .content { | ||
padding-top: 102px; | ||
} | ||
|
||
html { | ||
scroll-padding-top: 100px; | ||
} |
File renamed without changes.