Skip to content

Commit 4a5e721

Browse files
committed
Javascript documentation
1 parent 67e2576 commit 4a5e721

Some content is hidden

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

47 files changed

+559
-16982
lines changed

Javascript Documentation/Index.html

Lines changed: 431 additions & 0 deletions
Large diffs are not rendered by default.

Javascript Documentation/style.css

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
html,
2+
body {
3+
min-width: 290px;
4+
color: #4d4e53;
5+
background-color: #ffffff;
6+
font-family: 'Open Sans', Arial, sans-serif;
7+
line-height: 2.0;
8+
}
9+
10+
#navbar {
11+
position: fixed;
12+
min-width: 290px;
13+
top: 0px;
14+
left: 0px;
15+
width: 300px;
16+
height: 100%;
17+
border-right: solid;
18+
border-color: rgba(0, 22, 22, 0.4);
19+
}
20+
21+
header {
22+
color: black;
23+
margin: 10px;
24+
text-align: center;
25+
font-size: 1.8em;
26+
font-weight: thin;
27+
}
28+
29+
#main-doc header {
30+
text-align: left;
31+
margin: 0px;
32+
}
33+
34+
#navbar ul {
35+
height: 88%;
36+
padding: 0;
37+
overflow-y: auto;
38+
overflow-x: hidden;
39+
}
40+
41+
#navbar li {
42+
color: #4d4e53;
43+
border-top: 1px solid;
44+
list-style: none;
45+
position: relative;
46+
width: 100%;
47+
}
48+
49+
#navbar a {
50+
display: block;
51+
padding: 10px 30px;
52+
color: #4d4e53;
53+
text-decoration: none;
54+
cursor: pointer;
55+
}
56+
57+
#main-doc {
58+
position: absolute;
59+
margin-left: 310px;
60+
padding: 20px;
61+
margin-bottom: 110px;
62+
}
63+
64+
section article {
65+
color: #4d4e53;
66+
margin: 15px;
67+
font-size: 0.96em;
68+
}
69+
70+
section li {
71+
margin: 15px 0px 0px 20px;
72+
}
73+
74+
code {
75+
display: block;
76+
text-align: left;
77+
white-space: pre-line;
78+
position: relative;
79+
word-break: normal;
80+
word-wrap: normal;
81+
line-height: 2;
82+
background-color: #f7f7f7;
83+
padding: 15px;
84+
margin: 10px;
85+
border-radius: 5px;
86+
}
87+
88+
@media only screen and (max-width: 815px) {
89+
/* For mobile phones: */
90+
#navbar ul {
91+
border: 1px solid;
92+
height: 207px;
93+
}
94+
95+
#navbar {
96+
background-color: white;
97+
position: absolute;
98+
top: 0;
99+
padding: 0;
100+
margin: 0;
101+
width: 100%;
102+
max-height: 275px;
103+
border: none;
104+
z-index: 1;
105+
border-bottom: 2px solid;
106+
}
107+
108+
#main-doc {
109+
position: relative;
110+
margin-left: 0px;
111+
margin-top: 270px;
112+
}
113+
}
114+
115+
@media only screen and (max-width: 400px) {
116+
#main-doc {
117+
margin-left: -10px;
118+
}
119+
120+
code {
121+
margin-left: -20px;
122+
width: 100%;
123+
padding: 15px;
124+
padding-left: 10px;
125+
padding-right: 45px;
126+
min-width: 233px;
127+
}
128+
}

TextUtils/.gitignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

TextUtils/README.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)