Skip to content

Commit 1e7069c

Browse files
committed
added basic website
1 parent 7b2eca9 commit 1e7069c

File tree

294 files changed

+49126
-1
lines changed

Some content is hidden

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

294 files changed

+49126
-1
lines changed

.DS_Store

16 KB
Binary file not shown.

Personal - Doc/.DS_Store

10 KB
Binary file not shown.

Personal - Doc/css/.DS_Store

6 KB
Binary file not shown.

Personal - Doc/css/font-awesome.min.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Personal - Doc/css/main.css

+231
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,231 @@
1+
body{
2+
background-color:#FFF;
3+
font-family: "Lato", sans-serif;
4+
font-weight: 300;
5+
font-size:16px;
6+
line-height:18px;
7+
color:#777;
8+
}
9+
10+
p{
11+
margin:0;
12+
}
13+
14+
a {
15+
color: #aa0a5f;
16+
}
17+
18+
a, a:hover, a:focus{
19+
text-decoration: none;
20+
outline: 0;
21+
}
22+
h1, h2, h3,
23+
h4, h5, h6 {
24+
color: #333;
25+
margin:0;
26+
font-weight: normal;
27+
}
28+
29+
h1 { font-size: 28px;}
30+
h2 { font-size: 24px;}
31+
h3 { font-size: 18px;}
32+
h5 { font-size: 16px;}
33+
h6 { font-size: 14px;}
34+
35+
strong {
36+
letter-s;;Dacing: 1px;
37+
}
38+
39+
code {
40+
background-color: #ddd;
41+
border-radius: 3px;
42+
color: #000;
43+
font-size: 85%;
44+
margin: 0;
45+
padding: 5px 10px;
46+
}
47+
48+
code a {
49+
color: #333;
50+
}
51+
52+
code a:hover {
53+
text-decoration: underline;
54+
}
55+
56+
section p {
57+
line-height: 28px;
58+
}
59+
60+
.clearfix:before,
61+
.clearfix:after {
62+
content: " ";
63+
display: table;
64+
}
65+
.clearfix:after {
66+
clear: both;
67+
}
68+
.clearfix {
69+
*zoom: 1;
70+
}
71+
72+
.tan {
73+
margin-bottom: 10px;
74+
}
75+
76+
.fifteen{
77+
margin-bottom: 15px;
78+
}
79+
80+
.twenty{
81+
margin-bottom: 20px;
82+
}
83+
84+
.center {
85+
text-align: center;
86+
}
87+
88+
.title {
89+
margin: 50px 0 30px;
90+
}
91+
92+
.syntaxhighlighter {
93+
border: 1px solid #efefef;
94+
max-height: 100% !important;
95+
padding: 20px 0;
96+
}
97+
98+
99+
.main-content section {
100+
margin: 0 5%;
101+
}
102+
103+
104+
.left-sidebar {
105+
background-color: #f3f3f3;
106+
float: left;
107+
min-height: 100%;
108+
position: fixed;
109+
width: 18%;
110+
}
111+
112+
.logo {
113+
padding-bottom: 30px;
114+
padding-left: 30px;
115+
padding-top: 70px;
116+
}
117+
118+
.left-nav ul {
119+
margin: 0;
120+
padding: 0;
121+
font-size: 14px;
122+
}
123+
124+
.left-nav ul li a {
125+
color: #222;
126+
display: block;
127+
padding: 10px 35px;
128+
-webkit-transition: all 0.3s ease-in 0s;
129+
-moz-transition: all 0.3s ease-in 0s;
130+
-ms-transition: all 0.3s ease-in 0s;
131+
-o-transition: all 0.3s ease-in 0s;
132+
transition: all 0.3s ease-in 0s;
133+
}
134+
135+
.left-nav ul li a:hover, .left-nav ul li .current {
136+
background-color: #8490ff;
137+
color: #fff;
138+
}
139+
140+
141+
#main-wrapper {
142+
float: left;
143+
margin-left: 18%;
144+
width: 82%;
145+
}
146+
147+
.content-header {
148+
border-bottom: 1px solid #ddd;
149+
border-top: 1px solid #ddd;
150+
margin-top: 30px;
151+
padding: 30px 0 35px;
152+
text-align: center;
153+
}
154+
155+
.welcome {
156+
font-size: 16px;
157+
line-height: 26px;
158+
margin: 35px auto 0;
159+
}
160+
161+
.features {
162+
margin-top: 50px;
163+
}
164+
165+
.features ul li {
166+
list-style: square outside none;
167+
margin-bottom: 15px;
168+
}
169+
170+
.features > ul {
171+
padding-left: 18px;
172+
}
173+
174+
.author {
175+
border-bottom: 1px solid #ddd;
176+
border-top: 1px solid #ddd;
177+
margin-top: 50px;
178+
padding: 30px 0;
179+
}
180+
181+
.author-info {
182+
font-size: 18px;
183+
line-height: 28px;
184+
margin: 0 auto;
185+
width: 50%;
186+
}
187+
188+
.section-content {
189+
font-size: 16px;
190+
line-height: 25px;
191+
}
192+
193+
.section-content li {
194+
margin-bottom: 15px;
195+
}
196+
197+
.section-content a:hover {
198+
text-decoration: underline;
199+
}
200+
201+
.script-source li {
202+
list-style: square outside none;
203+
margin-bottom: 10px;
204+
}
205+
206+
#twitter-feed li,
207+
#flickr li {
208+
line-height: 25px;
209+
margin-bottom: 10px;
210+
}
211+
212+
#twitter-feed img {
213+
border: 1px solid #ddd;
214+
box-shadow: 2px 3px 3px #ddd;
215+
height: auto;
216+
margin-top: 10px;
217+
max-width: 100%;
218+
}
219+
220+
221+
222+
223+
224+
225+
226+
227+
228+
229+
230+
231+

Personal - Doc/css/normalize.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Personal - Doc/fonts/.DS_Store

6 KB
Binary file not shown.

Personal - Doc/fonts/FontAwesome.otf

73.4 KB
Binary file not shown.
70.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)