8000 Added download button · mysqlboy/morgo.github.io@ca9edc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca9edc2

Browse files
committed
Added download button
1 parent 648ef4e commit ca9edc2

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

_sass/_base.scss

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,40 @@ pre {
204204
}
205205

206206
.dual-column {
207-
column-count: 2;
208-
-webkit-column-count: 2;
209-
}
207+
-webkit-column-count: 2; /* Chrome, Safari, Opera */
208+
-moz-column-count: 2; /* Firefox */
209+
column-count: 2;
210+
}
211+
212+
.btn {
213+
background: #3498db;
214+
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
215+
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
216+
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
217+
background-image: -o-linear-gradient(top, #3498db, #2980b9);
218+
background-image: linear-gradient(to bottom, #3498db, #2980b9);
219+
-webkit-border-radius: 28;
220+
-moz-border-radius: 28;
221+
border-radius: 28px;
222+
font-family: Arial;
223+
color: #ffffff !important;
224+
font-size: 16px;
225+
padding: 9px 20px 7px 20px;
226+
text-decoration: none;
227+
margin-bottom: 20px;
228+
}
229+
230+
.btn:hover {
231+
background: #3cb0fd;
232+
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
233+
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
234+
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
235+
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
236+
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
237+
text-decoration: none;
238+
}
239+
240+
.download {
241+
padding-bottom: 25px;
242+
padding-top: 25px;
243+
}

index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44

55
<div class="home">
66

7-
<p>There are over 150 new features in MySQL 5.7.</p>
7+
<div id="intro">
88

9+
<p>There are over 150 new features in MySQL 5.7.</p>
910
<p>The MySQL manual is very good, but verbose. This is a list of new 6911 features in short bullet form. I have tried very hard to make sure each feature is only mentioned once. So <em>InnoDB native partitioning</em> could be mentioned under either InnoDB or partitioning.</p>
1011

12+
<div class="download"><a class="btn" href="http://dev.mysql.com/downloads/mysql/5.7.html">Download MySQL 5.7.8 RC2</a><br />&nbsp;&nbsp;&nbsp; or install from <a href="http://dev.mysql.com/downloads/repo/yum/">yum</a>/<a href="http://dev.mysql.com/downloads/repo/apt/">apt</a> repo.</div>
13+
14+
</div>
15+
1116
<h3>Replication</h3>
1217

1318
<div class="dual-column">

0 commit comments

Comments
 (0)
0