This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move landing page into Docs directory and generate documenation manua…
…l as a subdirectory.
- Loading branch information
1 parent
b8359db
commit e53991b
Showing
82 changed files
with
3,037 additions
and
52 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 |
---|---|---|
|
@@ -28,4 +28,3 @@ grdlog | |
|
||
tempAscii.txt | ||
Transient_Sl.txt | ||
*.png |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,247 @@ | ||
/* Resets (http://meyerweb.com/eric/tools/css/reset/ | v2.0 | 20110126 | License: none (public domain)) */ | ||
|
||
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none} | ||
|
||
/* Box Model */ | ||
|
||
*, *:before, *:after { | ||
-moz-box-sizing: border-box; | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Container */ | ||
|
||
.container { | ||
margin-left: auto; | ||
margin-right: auto; | ||
|
||
/* width: (containers) */ | ||
width: 1200px; | ||
} | ||
|
||
/* Modifiers */ | ||
|
||
/* 125% */ | ||
.container.\31 25\25 { | ||
width: 100%; | ||
|
||
/* max-width: (containers * 1.25) */ | ||
max-width: 1500px; | ||
|
||
/* min-width: (containers) */ | ||
min-width: 1200px; | ||
} | ||
|
||
/* 75% */ | ||
.container.\37 5\25 { | ||
|
||
/* width: (containers * 0.75) */ | ||
width: 900px; | ||
|
||
} | ||
|
||
/* 50% */ | ||
.container.\35 0\25 { | ||
|
||
/* width: (containers * 0.50) */ | ||
width: 600px; | ||
|
||
} | ||
|
||
/* 25% */ | ||
.container.\32 5\25 { | ||
|
||
/* width: (containers * 0.25) */ | ||
width: 300px; | ||
|
||
} | ||
|
||
/* Grid */ | ||
|
||
.row { | ||
border-bottom: solid 1px transparent; | ||
} | ||
|
||
.row > * { | ||
float: left; | ||
} | ||
|
||
.row:after, .row:before { | ||
content: ''; | ||
display: block; | ||
clear: both; | ||
height: 0; | ||
} | ||
|
||
.row.uniform > * > :first-child { | ||
margin-top: 0; | ||
} | ||
|
||
.row.uniform > * > :last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
/* Gutters */ | ||
|
||
/* Normal */ | ||
|
||
.row > * { | ||
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ | ||
padding: 0 0 0 2em; | ||
} | ||
|
||
.row { | ||
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */ | ||
margin: 0 0 -1px -2em; | ||
} | ||
|
||
.row.uniform > * { | ||
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */ | ||
padding: 2em 0 0 2em; | ||
} | ||
|
||
.row.uniform { | ||
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */ | ||
margin: -2em 0 -1px -2em; | ||
} | ||
|
||
/* 200% */ | ||
|
||
.row.\32 00\25 > * { | ||
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ | ||
padding: 0 0 0 4em; | ||
} | ||
|
||
.row.\32 00\25 { | ||
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */ | ||
margin: 0 0 -1px -4em; | ||
} | ||
|
||
.row.uniform.\32 00\25 > * { | ||
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */ | ||
padding: 4em 0 0 4em; | ||
} | ||
|
||
.row.uniform.\32 00\25 { | ||
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */ | ||
margin: -4em 0 -1px -4em; | ||
} | ||
|
||
/* 150% */ | ||
|
||
.row.\31 50\25 > * { | ||
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ | ||
padding: 0 0 0 1.5em; | ||
} | ||
|
||
.row.\31 50\25 { | ||
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */ | ||
margin: 0 0 -1px -1.5em; | ||
} | ||
|
||
.row.uniform.\31 50\25 > * { | ||
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */ | ||
padding: 1.5em 0 0 1.5em; | ||
} | ||
|
||
.row.uniform.\31 50\25 { | ||
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */ | ||
margin: -1.5em 0 -1px -1.5em; | ||
} | ||
|
||
/* 50% */ | ||
|
||
.row.\35 0\25 > * { | ||
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ | ||
padding: 0 0 0 1em; | ||
} | ||
|
||
.row.\35 0\25 { | ||
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */ | ||
margin: 0 0 -1px -1em; | ||
} | ||
|
||
.row.uniform.\35 0\25 > * { | ||
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */ | ||
padding: 1em 0 0 1em; | ||
} | ||
|
||
.row.uniform.\35 0\25 { | ||
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */ | ||
margin: -1em 0 -1px -1em; | ||
} | ||
|
||
/* 25% */ | ||
|
||
.row.\32 5\25 > * { | ||
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ | ||
padding: 0 0 0 0.5em; | ||
} | ||
|
||
.row.\32 5\25 { | ||
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */ | ||
margin: 0 0 -1px -0.5em; | ||
} | ||
|
||
.row.uniform.\32 5\25 > * { | ||
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */ | ||
padding: 0.5em 0 0 0.5em; | ||
} | ||
|
||
.row.uniform.\32 5\25 { | ||
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */ | ||
margin: -0.5em 0 -1px -0.5em; | ||
} | ||
|
||
/* 0% */ | ||
|
||
.row.\30 \25 > * { | ||
padding: 0; | ||
} | ||
|
||
.row.\30 \25 { | ||
margin: 0 0 -1px 0; | ||
} | ||
|
||
/* Cells */ | ||
|
||
.\31 2u, .\31 2u\24 { width: 100%; clear: none; margin-left: 0; } | ||
.\31 1u, .\31 1u\24 { width: 91.6666666667%; clear: none; margin-left: 0; } | ||
.\31 0u, .\31 0u\24 { width: 83.3333333333%; clear: none; margin-left: 0; } | ||
.\39 u, .\39 u\24 { width: 75%; clear: none; margin-left: 0; } | ||
.\38 u, .\38 u\24 { width: 66.6666666667%; clear: none; margin-left: 0; } | ||
.\37 u, .\37 u\24 { width: 58.3333333333%; clear: none; margin-left: 0; } | ||
.\36 u, .\36 u\24 { width: 50%; clear: none; margin-left: 0; } | ||
.\35 u, .\35 u\24 { width: 41.6666666667%; clear: none; margin-left: 0; } | ||
.\34 u, .\34 u\24 { width: 33.3333333333%; clear: none; margin-left: 0; } | ||
.\33 u, .\33 u\24 { width: 25%; clear: none; margin-left: 0; } | ||
.\32 u, .\32 u\24 { width: 16.6666666667%; clear: none; margin-left: 0; } | ||
.\31 u, .\31 u\24 { width: 8.3333333333%; clear: none; margin-left: 0; } | ||
|
||
.\31 2u\24 + *, | ||
.\31 1u\24 + *, | ||
.\31 0u\24 + *, | ||
.\39 u\24 + *, | ||
.\38 u\24 + *, | ||
.\37 u\24 + *, | ||
.\36 u\24 + *, | ||
.\35 u\24 + *, | ||
.\34 u\24 + *, | ||
.\33 u\24 + *, | ||
.\32 u\24 + *, | ||
.\31 u\24 + * { | ||
clear: left; | ||
} | ||
|
||
.\-11u { margin-left: 91.6666666667% } | ||
.\-10u { margin-left: 83.3333333333% } | ||
.\-9u { margin-left: 75% } | ||
.\-8u { margin-left: 66.6666666667% } | ||
.\-7u { margin-left: 58.3333333333% } | ||
.\-6u { margin-left: 50% } | ||
.\-5u { margin-left: 41.6666666667% } | ||
.\-4u { margin-left: 33.3333333333% } | ||
.\-3u { margin-left: 25% } | ||
.\-2u { margin-left: 16.6666666667% } | ||
.\-1u { margin-left: 8.3333333333% } |
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,5 @@ | ||
/* | ||
Transit by TEMPLATED | ||
templated.co @templatedco | ||
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license) | ||
*/ |
Oops, something went wrong.