Skip to content

Commit 0634031

Browse files
[Merge] gh-pages to master's docs folder
2 parents ec78d0a + 7c406a5 commit 0634031

File tree

120 files changed

+231301
-0
lines changed

Some content is hidden

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

120 files changed

+231301
-0
lines changed

docs/css/content.css

Lines changed: 289 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,289 @@
1+
@-webkit-keyframes rainbow {
2+
0% {
3+
color: rgb(0, 255, 0);
4+
}
5+
6+
33% {
7+
color: rgb(0, 0, 255);
8+
}
9+
10+
66% {
11+
color: rgb(255, 0, 0);
12+
}
13+
14+
100% {
15+
color: rgb(0, 255, 0);
16+
}
17+
}
18+
19+
@-moz-keyframes rainbow {
20+
0% {
21+
color: rgb(0, 255, 0);
22+
}
23+
24+
33% {
25+
color: rgb(0, 0, 255);
26+
}
27+
28+
66% {
29+
color: rgb(255, 0, 0);
30+
}
31+
32+
100% {
33+
color: rgb(0, 255, 0);
34+
}
35+
}
36+
37+
@-o-keyframes rainbow {
38+
0% {
39+
color: rgb(0, 255, 0);
40+
}
41+
42+
33% {
43+
color: rgb(0, 0, 255);
44+
}
45+
46+
66% {
47+
color: rgb(255, 0, 0);
48+
}
49+
50+
100% {
51+
color: rgb(0, 255, 0);
52+
}
53+
}
54+
55+
@keyframes rainbow {
56+
0% {
57+
color: rgb(0, 255, 0);
58+
}
59+
60+
33% {
61+
color: rgb(0, 0, 255);
62+
}
63+
64+
66% {
65+
color: rgb(255, 0, 0);
66+
}
67+
68+
100% {
69+
color: rgb(0, 255, 0);
70+
}
71+
}
72+
73+
.rainbowText {
74+
text-shadow: 1px 1px 1px #ffffff;
75+
-webkit-animation: rainbow 4s infinite linear;
76+
-moz-animation: rainbow 4s infinite linear;
77+
-o-animation: rainbow 4s infinite linear;
78+
animation: rainbow 4s infinite linear;
79+
}
80+
81+
.imgFloatLeft {
82+
float: left;
83+
margin: 5px;
84+
}
85+
86+
.imgFloatRight {
87+
float: right;
88+
margin: 5px;
89+
}
90+
91+
.center {
92+
text-align: center;
93+
}
94+
95+
.screenShoot {
96+
max-width: 60%;
97+
box-shadow: 4px 4px 6px black;
98+
margin: 15px;
99+
}
100+
101+
.clearHL {
102+
clear: both;
103+
}
104+
105+
.warn {
106+
color: #ff6500
107+
}
108+
109+
.newsBlock {
110+
overflow: hidden;
111+
position: relative;
112+
background: rgba(255, 255, 255, 0.2);
113+
border-radius: 5px;
114+
padding: .3em;
115+
}
116+
117+
.newsBlock h1 {
118+
margin: 4px;
119+
font-size: 20px;
120+
text-decoration: underline;
121+
}
122+
123+
.newsBlock .date {
124+
float: right;
125+
font-style: italic;
126+
}
127+
128+
.newsBlock .content {
129+
clear: both;
130+
text-indent: 2.5em;
131+
}
132+
133+
.newsBlock ~ .newsBlock {
134+
margin-top: 10px;
135+
}
136+
137+
#showcase > p:after {
138+
content: "";
139+
display: block;
140+
clear: both;
141+
}
142+
143+
/* Terminal Colors */
144+
145+
146+
.g.m1 { /* bright */
147+
font-weight: 900;
148+
}
149+
150+
.g.m2 { /* dim */
151+
opacity: 0.7;
152+
}
153+
154+
.g.m3 {
155+
font-style: italic;
156+
}
157+
158+
.g.m4 {
159+
text-decoration: underline;
160+
}
161+
162+
.g.m5 {
163+
@include animation(blink infinite 1s);
164+
}
165+
166+
.g.m7 {
167+
@include filter(invert(100%));
168+
}
169+
170+
.g.m8 {
171+
opacity: 0;
172+
}
173+
174+
.g.hint {
175+
opacity: .5;
176+
}
177+
178+
.g.m30 {
179+
color: #000000;
180+
}
181+
182+
.g.m31 {
183+
color: #ff0000;
184+
}
185+
186+
.g.m32 {
187+
color: #008000;
188+
}
189+
190+
.g.m33 {
191+
color: yellow;
192+
}
193+
194+
.g.m34 {
195+
color: #0000ff;
196+
}
197+
198+
.g.m35 {
199+
color: magenta;
200+
}
201+
202+
.g.m36 {
203+
color: cyan;
204+
}
205+
206+
.g.m37 {
207+
color: white;
208+
}
209+
210+
.g.m40 {
211+
background-color: #000000;
212+
}
213+
214+
.g.m41 {
215+
background-color: #ff0000;
216+
}
217+
218+
.g.m42 {
219+
background-color: #008000;
220+
}
221+
222+
.g.m43 {
223+
background-color: yellow;
224+
}
225+
226+
.g.m44 {
227+
background-color: #0000ff;
228+
}
229+
230+
.g.m45 {
231+
background-color: magenta;
232+
}
233+
234+
.g.m46 {
235+
background-color: cyan;
236+
}
237+
238+
.g.m47 {
239+
background-color: white;
240+
}
241+
242+
.g.keyword {
243+
color: #4898ff;
244+
}
245+
246+
.g.string {
247+
color: #00c700;
248+
}
249+
250+
.g.constant {
251+
color: cyan;
252+
}
253+
254+
.g.special {
255+
color: yellow;
256+
}
257+
258+
.g.variable {
259+
color: lightsalmon;
260+
}
261+
262+
.g.wrong {
263+
color: red;
264+
}
265+
266+
.g.selected {
267+
color: white;
268+
background-color: royalblue;
269+
}
270+
271+
.g.argument {
272+
color: magenta;
273+
}
274+
275+
.segments {
276+
position: relative;
277+
overflow: hidden;
278+
}
279+
280+
@media (min-width: 1200px) {
281+
.segments {
282+
column-count: 2;
283+
column-gap: 0;
284+
}
285+
.segments > .segment {
286+
break-inside: avoid;
287+
padding: 5px;
288+
}
289+
}

0 commit comments

Comments
 (0)