Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ <h2>A Keyboard Utility For All Your Windows Presentation Needs</h2>


<section id="main_content">
<div class="button">
<a href="https://github.com/Code52/carnac/releases/latest">Download</a>
<p class="top">Requires Windows 7 or later</p>
<p class="bottom">3.20MB .application</p>
<div class="button-wrapper">
<div class="button">
<a href="https://github.com/Code52/carnac/archive/master.zip">Download .Zip</a>
<p class="top">Requires Windows 7 or later</p>
<p class="bottom">3.20MB .application</p>
</div>

<div class="button">
<a href="https://chocolatey.org/packages/carnac">Chocolatey Instal</a>
<p class="top">Requires Chocolatey</p>
<p class="bottom">3.20MB .application</p>
</div>
</div>

<div>
Expand All @@ -63,13 +71,13 @@ <h2>A Keyboard Utility For All Your Windows Presentation Needs</h2>
</span>
<span class="left-tail"></span>
<span class="right-tail"></span>
</span>
</span>
<a href="https://github.com/"><span style="margin-top:10px;" class="octocat"></span></a>
</footer>


</div>


</body>
</html>
23 changes: 14 additions & 9 deletions stylesheets/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,11 @@ dd p:first-child {
background: #eee;
}

.button-wrapper{
display: grid;
grid-template-columns: 1fr 1fr;
}

.button {
width: 200px;
margin: 50px auto 20px;
Expand All @@ -591,15 +596,15 @@ dd p:first-child {
display: block;
height: 50px;
width: 200px;

/*TYPE*/
color: white;
font: 17px/50px Helvetica, Verdana, sans-serif;
text-decoration: none;
text-align: center;
text-transform: uppercase;
/*GRADIENT*/

/*GRADIENT*/
background: #00b7ea; /* Old browsers */
background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00b7ea), color-stop(100%,#009ec3)); /* Chrome,Safari4+ */
Expand All @@ -614,7 +619,7 @@ dd p:first-child {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;

-webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
-moz-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
Expand All @@ -624,19 +629,19 @@ dd p:first-child {
background: #222;
display: block;
height: 40px;
width: 180px;
width: 180px;
margin: -50px 0 0 10px;

/*TYPE*/
text-align: center;
font: 12px/45px Helvetica, Verdana, sans-serif;
color: #fff;

/*POSITION*/
position: absolute;
z-index: -1;
/*TRANSITION*/

/*TRANSITION*/
-webkit-transition: margin 0.5s ease;
-moz-transition: margin 0.5s ease;
-o-transition: margin 0.5s ease;
Expand Down