Skip to content

Commit 1c94d7b

Browse files
committed
added download button with release zip
1 parent 29430d8 commit 1c94d7b

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

bin/materialize.min.css

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

bin/materialize.zip

34.8 KB
Binary file not shown.

css/ghpages-materialize.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ a {
12891289
background-color: #ea454b; }
12901290
.red.lighten-2, nav, ul.tabs .indicator, #index-banner {
12911291
background-color: #ee6e73; }
1292-
.red.lighten-3 {
1292+
.red.lighten-3, #download-button {
12931293
background-color: #f3989b; }
12941294
.red.lighten-4 {
12951295
background-color: #f8c1c3; }
@@ -3261,6 +3261,13 @@ p {
32613261
#index-banner h4 {
32623262
margin-bottom: 40px; }
32633263

3264+
#download-button {
3265+
width: 200px;
3266+
height: 70px;
3267+
line-height: 70px;
3268+
font-size: 19px;
3269+
font-weight: 500; }
3270+
32643271
.promo p {
32653272
margin-top: -40px;
32663273
font-size: 1.7rem;

index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,19 @@
1919
<li><a href="sass.html">SASS</a></li>
2020
<li><a href="components.html">Components</a></li>
2121
<li><a href="javascript.html">JavaScript</a></li>
22-
<li><a href="team.html">Meet the Team</a></li>
22+
<li><a href="team.html">Meet the Team</a></li>
2323
</ul>
2424
</div>
2525
</nav>
2626
<div class="section" id="index-banner">
2727
<div class="container">
2828
<h1 class="header">Materialize</h1>
2929
<div class='row center'>
30-
<h4 class ="header col s12 light center">A modern responsive front-end framework based on Material Design</h4><br><br>
30+
<h4 class ="header col s12 light center">A modern responsive front-end framework based on Material Design</h4><br>
31+
32+
</div>
33+
<div class="row center">
34+
<a href="bin/materialize.zip" id="download-button" class="button thick raised waves-effect waves-light">Download</a>
3135
</div>
3236

3337
</div>

sass/style.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ p {
4343
}
4444
}
4545

46+
#download-button {
47+
@extend .red.lighten-3;
48+
width: 200px;
49+
height: 70px;
50+
line-height: 70px;
51+
font-size: 19px;
52+
font-weight: 500;
53+
}
54+
4655
.promo{
4756

4857
p {

0 commit comments

Comments
 (0)