Skip to content

Commit e19406d

Browse files
Deployed a1dac3c to 1.0 with MkDocs 1.5.3 and mike 2.0.0
1 parent 56fbec0 commit e19406d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+7990
-0
lines changed

1.0/404.html

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

1.0/__pycache__/hooks.cpython-310.pyc

408 Bytes
Binary file not shown.

1.0/assets/css/termynal.css

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
/**
2+
* termynal.js
3+
*
4+
* @author Ines Montani <ines@ines.io>
5+
* @version 0.0.1
6+
* @license MIT
7+
*/
8+
9+
:root {
10+
--color-bg: #252a33;
11+
--color-text: #eee;
12+
--color-text-subtle: #a2a2a2;
13+
}
14+
15+
[data-termynal] {
16+
width: 750px;
17+
max-width: 100%;
18+
background: var(--color-bg);
19+
color: var(--color-text);
20+
font-size: 12px;
21+
font-family: 'Fira Mono', Consolas, Menlo, Monaco, 'Courier New', Courier, monospace;
22+
border-radius: 4px;
23+
padding: 75px 45px 35px;
24+
position: relative;
25+
-webkit-box-sizing: border-box;
26+
box-sizing: border-box;
27+
}
28+
29+
[data-termynal]:before {
30+
content: '';
31+
position: absolute;
32+
top: 15px;
33+
left: 15px;
34+
display: inline-block;
35+
width: 15px;
36+
height: 15px;
37+
border-radius: 50%;
38+
/* A little hack to display the window buttons in one pseudo element. */
39+
background: #d9515d;
40+
-webkit-box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
41+
box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
42+
}
43+
44+
[data-termynal]:after {
45+
content: 'bash';
46+
position: absolute;
47+
color: var(--color-text-subtle);
48+
top: 5px;
49+
left: 0;
50+
width: 100%;
51+
text-align: center;
52+
}
53+
54+
[data-ty] {
55+
display: block;
56+
line-height: 2;
57+
}
58+
59+
[data-ty]:before {
60+
/* Set up defaults and ensure empty lines are displayed. */
61+
content: '';
62+
display: inline-block;
63+
vertical-align: middle;
64+
}
65+
66+
[data-ty="input"]:before,
67+
[data-ty-prompt]:before {
68+
margin-right: 0.75em;
69+
color: var(--color-text-subtle);
70+
}
71+
72+
[data-ty="input"]:before {
73+
content: '$';
74+
}
75+
76+
[data-ty][data-ty-prompt]:before {
77+
content: attr(data-ty-prompt);
78+
}
79+
80+
[data-ty-cursor]:after {
81+
content: attr(data-ty-cursor);
82+
font-family: monospace;
83+
margin-left: 0.5em;
84+
-webkit-animation: blink 1s infinite;
85+
animation: blink 1s infinite;
86+
}
87+
88+
89+
/* Cursor animation */
90+
91+
@-webkit-keyframes blink {
92+
50% {
93+
opacity: 0;
94+
}
95+
}
96+
97+
@keyframes blink {
98+
50% {
99+
opacity: 0;
100+
}
101+
}

1.0/assets/favicon.ico

1.41 KB
Binary file not shown.

1.0/assets/images/favicon.png

1.83 KB
Loading

1.0/assets/img/favicon.ico

1.41 KB
Binary file not shown.

1.0/assets/img/il-logo.png

2.95 KB
Loading

1.0/assets/javascripts/bundle.8fd75fb4.min.js

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

1.0/assets/javascripts/bundle.8fd75fb4.min.js.map

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

1.0/assets/javascripts/lunr/min/lunr.ar.min.js

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

1.0/assets/javascripts/lunr/min/lunr.da.min.js

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

1.0/assets/javascripts/lunr/min/lunr.de.min.js

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

1.0/assets/javascripts/lunr/min/lunr.du.min.js

Lines changed: 18 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)