Skip to content

Commit 41dfa8c

Browse files
committed
write down index template
1 parent 22f5645 commit 41dfa8c

File tree

4 files changed

+79
-4
lines changed

4 files changed

+79
-4
lines changed

images/awesome.gif

491 KB
Loading

index.html

+29
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,35 @@
1414
<li><a href="/mentee.html">Mentee</a></li>
1515
</ul>
1616
</div>
17+
18+
<div class="content">
19+
<div class="desc">
20+
<p>
21+
<img src="/images/awesome.gif" alt="Whoa!">
22+
</p>
23+
<p>Software maestro is beautiful, gorgeous and amazing!</p>
24+
<p>Until now, {{ member.count }} developers have been with us.
25+
As contributing to <a href="#">here</a>, you can join us.</p>
26+
27+
<ul>
28+
<li class="github">
29+
<a href="https://github.com/Software-Maestro/Board">
30+
software-maestro/Board
31+
</a>
32+
</li>
33+
<li class="github">
34+
<a href="https://github.com/Software-Maestro/Members">
35+
software-maestro/Members
36+
</a>
37+
</li>
38+
<li class="github">
39+
<a href="https://github.com/Software-Maestro/software-maestro.github.io">
40+
software-maestro/software-maestro.github.io
41+
</a>
42+
</li>
43+
</ul>
44+
</div>
45+
</div>
1746
</div>
1847
</body>
1948
</html>

static/css/style.css

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

static/less/style.less

+49-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,60 @@
1+
html, body, div {
2+
font-size: 17px;
3+
line-height: 19px;
4+
color: #6a6a6a;
5+
}
6+
17
body {
2-
padding-top:20px;
8+
padding-top: 20px;
39
}
410

511
div#wrap {
6-
@width: 1180px;
12+
@width: 960px;
713
width: @width;
814
max-width: @width;
915
margin: 0 auto;
1016
}
1117

18+
div.pure-menu a {
19+
color: #444444;
20+
}
21+
1222
ul.menu {
13-
float:right;
23+
float: right;
24+
}
25+
26+
a {
27+
color: #5881c3;
28+
text-decoration: none;
29+
30+
&:hover {
31+
text-decoration: underline;
32+
}
33+
}
34+
35+
div.content {
36+
margin-top: 20px;
37+
padding: 0 20px;
38+
39+
.desc {
40+
font-size: 14px;
41+
line-height: 16px;
42+
overflow: hidden;
43+
44+
p {
45+
margin: 5px 0;
46+
47+
img {
48+
float: right;
49+
}
50+
}
51+
52+
ul {
53+
margin: 20px 0 0 0;
54+
padding: 0 0 0 20px;
55+
li {
56+
margin-bottom: 10px;
57+
}
58+
}
59+
}
1460
}

0 commit comments

Comments
 (0)