Skip to content

Commit a173ba8

Browse files
author
Adam Culpepper
committed
Adding in better a demo page
1 parent 9fbf512 commit a173ba8

File tree

5 files changed

+487
-4
lines changed

5 files changed

+487
-4
lines changed

docs/assets/css/custom.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Montserrat:400,600,700,900&display=swap');
2+
3+
html, body {height:100%;}
4+
body {font-family:'Open Sans';}
5+
h1 {font-family:'Montserrat'; font-weight:900; font-size:3rem;}
6+
a {transition:background 200ms linear;}
7+
a:hover {text-decoration:none;}
8+
9+
/* Content Styles */
10+
header, footer {background:#eee; padding:20px;}
11+
header, header a,
12+
footer, footer a {color:rgba(0, 0, 0, 0.7);}
13+
header a, footer a {display:inline-flex; align-items:center; justify-content:center; padding:5px 10px; background:rgba(0, 0, 0, 0.07);}
14+
header a:hover, footer a:hover {color:#222; background:rgba(0, 0, 0, 0.20);}
15+
16+
footer {font-size:25px;}
17+
footer > div {align-items:center; justify-content:center;}
18+
19+
/* Sticky Footer */
20+
body {display:flex; flex-direction:column;}
21+
#content {flex:1 0 auto;}
22+
footer {flex-shrink:0;}
23+
24+
textarea {width:100%; font-size:0.7rem;}

docs/assets/libs/prism/prism.css

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
/* PrismJS 1.19.0
2+
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
3+
/**
4+
* prism.js default theme for JavaScript, CSS and HTML
5+
* Based on dabblet (http://dabblet.com)
6+
* @author Lea Verou
7+
*/
8+
9+
code[class*="language-"],
10+
pre[class*="language-"] {
11+
color: black;
12+
background: none;
13+
text-shadow: 0 1px white;
14+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
15+
font-size: 1em;
16+
text-align: left;
17+
white-space: pre;
18+
word-spacing: normal;
19+
word-break: normal;
20+
word-wrap: normal;
21+
line-height: 1.5;
22+
23+
-moz-tab-size: 4;
24+
-o-tab-size: 4;
25+
tab-size: 4;
26+
27+
-webkit-hyphens: none;
28+
-moz-hyphens: none;
29+
-ms-hyphens: none;
30+
hyphens: none;
31+
}
32+
33+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
34+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
35+
text-shadow: none;
36+
background: #b3d4fc;
37+
}
38+
39+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
40+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
41+
text-shadow: none;
42+
background: #b3d4fc;
43+
}
44+
45+
@media print {
46+
code[class*="language-"],
47+
pre[class*="language-"] {
48+
text-shadow: none;
49+
}
50+
}
51+
52+
/* Code blocks */
53+
pre[class*="language-"] {
54+
padding: 0 1em;
55+
margin: .5em 0;
56+
overflow: auto;
57+
}
58+
59+
:not(pre) > code[class*="language-"],
60+
pre[class*="language-"] {
61+
background: #f5f2f0;
62+
}
63+
64+
/* Inline code */
65+
:not(pre) > code[class*="language-"] {
66+
padding: .1em;
67+
border-radius: .3em;
68+
white-space: normal;
69+
}
70+
71+
.token.comment,
72+
.token.prolog,
73+
.token.doctype,
74+
.token.cdata {
75+
color: slategray;
76+
}
77+
78+
.token.punctuation {
79+
color: #999;
80+
}
81+
82+
.token.namespace {
83+
opacity: .7;
84+
}
85+
86+
.token.property,
87+
.token.tag,
88+
.token.boolean,
89+
.token.number,
90+
.token.constant,
91+
.token.symbol,
92+
.token.deleted {
93+
color: #905;
94+
}
95+
96+
.token.selector,
97+
.token.attr-name,
98+
.token.string,
99+
.token.char,
100+
.token.builtin,
101+
.token.inserted {
102+
color: #690;
103+
}
104+
105+
.token.operator,
106+
.token.entity,
107+
.token.url,
108+
.language-css .token.string,
109+
.style .token.string {
110+
color: #9a6e3a;
111+
background: hsla(0, 0%, 100%, .5);
112+
}
113+
114+
.token.atrule,
115+
.token.attr-value,
116+
.token.keyword {
117+
color: #07a;
118+
}
119+
120+
.token.function,
121+
.token.class-name {
122+
color: #DD4A68;
123+
}
124+
125+
.token.regex,
126+
.token.important,
127+
.token.variable {
128+
color: #e90;
129+
}
130+
131+
.token.important,
132+
.token.bold {
133+
font-weight: bold;
134+
}
135+
.token.italic {
136+
font-style: italic;
137+
}
138+
139+
.token.entity {
140+
cursor: help;
141+
}

docs/assets/libs/prism/prism.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)