-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added new sections * Add athena logo to net widget * Update lead * Fix widget links * Change logo and slogan * Fix image size * Text changes * Update texts
- Loading branch information
1 parent
9b25400
commit 2546d6a
Showing
15 changed files
with
472 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
title: Athena by OLX | ||
email: [email protected] | ||
description: > # this means to ignore newlines until "baseurl:" | ||
Athena by OLX. Automate, Automate, Automate! | ||
Athena is an automation platform with a plugin architecture that allows you to easily create and share services. | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "https://athena-oss.github.io" # the base hostname & protocol for your site | ||
twitter_username: jekyllrb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<footer> | ||
<div class="container"> | ||
Licensed under the Apache License Version 2.0 (APLv2). | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | ||
<script type="text/javascript" src="{{ "/js/website.js" | prepend: site.baseurl }}"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ | |
</div> | ||
|
||
{% include footer.html %} | ||
|
||
{% include scripts.html %} | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,102 @@ | ||
.athena-super { | ||
margin-top: 10%; | ||
text-align: center; | ||
.athena-super-logo { | ||
width: 100%; | ||
} | ||
|
||
.athena-super-title { | ||
font-size: 2rem; | ||
color: #98c93c; | ||
text-transform: uppercase; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.athena-super-slogan { | ||
font-size: 12px; | ||
font-weight:normal; | ||
font-style: italic; | ||
margin: 0.25rem 0 0 0; | ||
padding: 0; | ||
color: black; | ||
} | ||
|
||
.athena-super-items { | ||
display: block; | ||
padding: 0; | ||
margin: 0.5rem 0 0 0; | ||
|
||
li { | ||
display: inline-block; | ||
padding: 0 0.25rem; | ||
margin: 0; | ||
|
||
a { | ||
color: #599542; | ||
} | ||
body, | ||
html{ | ||
box-sizing: border-box; | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
line-height: 1; | ||
} | ||
*, *:before, *:after { | ||
box-sizing: inherit; | ||
} | ||
|
||
p { | ||
margin-bottom: 15px; | ||
} | ||
|
||
strong { | ||
font-weight: 600; | ||
} | ||
|
||
a { | ||
color: #000; | ||
} | ||
|
||
ul { | ||
list-style-position: inside; | ||
margin-bottom: 20px; | ||
margin-left: 30px; | ||
} | ||
|
||
h2 { | ||
font-size: 18px; | ||
line-height: 30px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
@media (min-width: 1025px) { | ||
h2 { | ||
font-size: 26px; | ||
line-height: 35px; | ||
} | ||
} | ||
|
||
.container { | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
@media (min-width: 768px) { | ||
.container { | ||
width: 750px; | ||
} | ||
} | ||
} | ||
@media (min-width: 1025px) { | ||
.container { | ||
width: 1000px; | ||
} | ||
} | ||
|
||
footer { | ||
background: #599542; | ||
color: #eee; | ||
font-size: 13px; | ||
line-height: 1.5em; | ||
padding: 20px; | ||
} | ||
@media (min-width: 1025px) { | ||
footer { | ||
font-size: 16px; | ||
padding: 20px 0; | ||
} | ||
} | ||
|
||
.center { | ||
margin-left: auto; | ||
margin-right: auto; | ||
text-align: center; | ||
} | ||
|
||
.button { | ||
border: 1px solid #eee; | ||
border-radius: 5px; | ||
color: #eee; | ||
display: inline-block; | ||
padding: 10px 30px; | ||
text-decoration: none; | ||
} | ||
|
||
.button:hover { | ||
border-color: #fff; | ||
color: #fff; | ||
} | ||
|
||
.button-big { | ||
border: 1px solid #599542; | ||
color: #599542; | ||
line-height: 1em; | ||
font-size: 18px; | ||
padding: 15px 30px; | ||
} | ||
|
||
.button-big:hover { | ||
border-color: #333; | ||
color: #333; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
.splash { | ||
padding-bottom: 40px; | ||
.logo { | ||
height: 250px; | ||
} | ||
.lead { | ||
color: #777; | ||
font-size: 20px; | ||
margin: 35px 0; | ||
} | ||
} | ||
|
||
@media (min-width: 1025px) { | ||
.splash { | ||
.logo { | ||
height: 400px; | ||
} | ||
.lead { | ||
font-size: 23px; | ||
line-height: 30px; | ||
} | ||
} | ||
} | ||
|
||
.benefits { | ||
background: linear-gradient(#599542, transparent), | ||
linear-gradient(-45deg, #98C93C, transparent), | ||
linear-gradient(45deg, #599542, transparent); | ||
color: #eee; | ||
font-size: 16px; | ||
padding: 70px 0; | ||
p, ul { | ||
line-height: 1.9em; | ||
} | ||
.button { | ||
margin-right: 20px; | ||
} | ||
} | ||
@media (max-width: 1024px) { | ||
.benefits { | ||
font-size: 14px; | ||
padding: 30px 20px; | ||
ul { | ||
margin-left: 10px; | ||
} | ||
.button { | ||
margin-bottom: 20px; | ||
} | ||
} | ||
} | ||
|
||
#plugins-widget { | ||
height: 100vw; | ||
margin: 30px auto 40px; | ||
opacity: 0; | ||
canvas { | ||
left: 0; | ||
} | ||
} | ||
@media (min-width: 768px) { | ||
#plugins-widget { | ||
height: 500px; | ||
} | ||
} | ||
|
||
.parallax { | ||
overflow: hidden; | ||
} | ||
|
||
.parallax_content { | ||
position: relative; | ||
display: block; | ||
overflow: hidden; | ||
cursor: pointer; | ||
transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); | ||
transform: perspective(300px) translate3d(0, 0, 0); | ||
align-items: center; | ||
height: auto; | ||
margin-right: auto; | ||
margin-left: auto; | ||
transform-style: preserve-3d; | ||
backface-visibility: hidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* http://meyerweb.com/eric/tools/css/reset/ | ||
v2.0 | 20110126 | ||
License: none (public domain) | ||
*/ | ||
|
||
html, body, div, span, applet, object, iframe, | ||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
a, abbr, acronym, address, big, cite, code, | ||
del, dfn, em, img, ins, kbd, q, s, samp, | ||
small, strike, strong, sub, sup, tt, var, | ||
b, u, i, center, | ||
dl, dt, dd, ol, ul, li, | ||
fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
} | ||
/* HTML5 display-role reset for older browsers */ | ||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section { | ||
display: block; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
|
||
@import | ||
"reset", | ||
"base", | ||
"layout", | ||
"syntax-highlighting" | ||
"blocks" | ||
; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.