evie-jekyll 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/404.html +4 -0
- data/LICENSE.txt +7 -0
- data/README.md +41 -0
- data/_includes/footer-dark.html +4 -0
- data/_includes/footer-light.html +4 -0
- data/_includes/footer.html +30 -0
- data/_includes/head.html +7 -0
- data/_includes/navbar-inner.html +11 -0
- data/_includes/navbar.html +7 -0
- data/_includes/scripts.html +1 -0
- data/_layouts/404.html +37 -0
- data/_layouts/default.html +16 -0
- data/_layouts/landing.html +22 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/base/_containers.scss +28 -0
- data/_sass/base/_globals.scss +37 -0
- data/_sass/base/_variables.scss +47 -0
- data/_sass/components/_app.scss +74 -0
- data/_sass/components/_auth.scss +52 -0
- data/_sass/components/_cta.scss +33 -0
- data/_sass/components/_expanded.scss +66 -0
- data/_sass/components/_footer.scss +98 -0
- data/_sass/components/_hero.scss +136 -0
- data/_sass/components/_landing.scss +9 -0
- data/_sass/components/_navbar.scss +160 -0
- data/_sass/components/_page.scss +74 -0
- data/_sass/components/_steps.scss +54 -0
- data/_sass/components/_verticalMenu.scss +91 -0
- data/_sass/elements/_buttons.scss +85 -0
- data/_sass/elements/_forms.scss +281 -0
- data/_sass/elements/_typography.scss +85 -0
- data/_sass/utils/_helpers.scss +3 -0
- data/_sass/utils/_mixins.scss +47 -0
- data/_sass/utils/_normalize.scss +341 -0
- data/assets/css/style.scss +31 -0
- data/assets/images/evie_default_bg.jpeg +0 -0
- data/assets/images/hero_sm.png +0 -0
- data/assets/images/tet.svg +1 -0
- data/assets/images/together.svg +1 -0
- data/assets/images/undraw_browser.svg +1 -0
- data/assets/images/undraw_creation.svg +1 -0
- data/assets/images/undraw_design.svg +1 -0
- data/assets/images/undraw_designer.svg +1 -0
- data/assets/images/undraw_elements.svg +1 -0
- data/assets/images/undraw_everywhere.svg +1 -0
- data/assets/images/undraw_fans.svg +1 -0
- data/assets/images/undraw_frameworks.svg +1 -0
- data/assets/images/undraw_hello_aeia.svg +1 -0
- data/assets/images/undraw_responsive.svg +1 -0
- data/assets/images/undraw_selfie.svg +1 -0
- data/assets/images/undraw_tabs.svg +1 -0
- data/assets/js/app.js +1463 -0
- data/assets/js/app.min.js +1 -0
- data/auth.html +30 -0
- data/dashboard.html +36 -0
- data/index.html +117 -0
- data/page.html +52 -0
- metadata +145 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e406f2f30c01bdbef33df44f5217af6f52c0e4abd35f50a7330e7a288ae1ecd2
|
4
|
+
data.tar.gz: 746e183e680b93606ca096f8667a66b24a699d4f540e6823620e024d259f97d0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 83d7ea2af9d070f775f4a0e1f01d7a41c7dfdf226d5c8d7408cec252a314f31418e24a7d483a833ca4b6c8fbcc9c04efb471cd39034d3ecc7c740c97eb9bb68a
|
7
|
+
data.tar.gz: dc20958815635071cd1321c4e6c995fb16ed6b38d8ab695c3f6ad0ac31f0b40880a31e8de69559b31f157cb31ea26966e62a18efd0334527af5206e376d803ad
|
data/404.html
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright 2018 Jonah Snider
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# evie-jekyll
|
2
|
+
|
3
|
+
The [Evie theme](https://evie.undraw.co/) ported. With some minor improvements/optimizations as well.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "evie-jekyll"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: evie-jekyll
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
```bash
|
22
|
+
bundle
|
23
|
+
```
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
```bash
|
28
|
+
gem install evie-jekyll
|
29
|
+
```
|
30
|
+
|
31
|
+
## Usage
|
32
|
+
|
33
|
+
Evie is meant as a theme you customize as needed. It comes with the premade dashboard, multipurpose, authentication, and 404 pages. The `default` layout adds the navbar, footer, and scripts to each page. The `page` and `post` layouts use the `default` layout.
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
Bug reports and pull requests are welcome on GitHub at [the project page](https://github.com/pizzafox/evie-jekyll). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
38
|
+
|
39
|
+
## License
|
40
|
+
|
41
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<div class="container">
|
2
|
+
<div class="footer__inner">
|
3
|
+
<a href="index" class="footer__textLogo">Evie theme</a>
|
4
|
+
<div class="footer__data">
|
5
|
+
<div class="footer__data__item">
|
6
|
+
<div class="footer__row">
|
7
|
+
Ported to Jekyll by <a href="https://jonahsnider.ninja" target="_blank" class="footer__link">Jonah Snider</a>
|
8
|
+
</div>
|
9
|
+
<div class="footer__row">
|
10
|
+
<a href="https://github.com/PizzaFox/evie-jekyll" target="_blank" class="footer__link">GitHub</a>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
<div class="footer__data__item">
|
14
|
+
<div class="footer__row">
|
15
|
+
Evie created by <a href="https://twitter.com/ninalimpi" target="_blank" class="footer__link">Katerina Limpitsouni</a>
|
16
|
+
</div>
|
17
|
+
<div class="footer__row">
|
18
|
+
Code/design by <a href="https://twitter.com/anges244" target="_blank" class="footer__link">Aggelos Gesoulis</a>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
<div class="footer__data__item">
|
22
|
+
<div class="footer__row">
|
23
|
+
<a href="https://github.com/PizzaFox/evie-jekyll/releases/latest" target="_blank" class="footer__link">Download on GitHub</a>
|
24
|
+
</div>
|
25
|
+
<div class="footer__row">
|
26
|
+
<a href="https://rubygems.org/gems/evie-jekyll" target="_blank" class="footer__link">Download on RubyGems.org</a>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="navbar__inner">
|
2
|
+
<a href="index" class="navbar__logo">Evie Jekyll</a>
|
3
|
+
<nav class="navbar__menu">
|
4
|
+
<ul>
|
5
|
+
<li><a href="page">Multipurpose page</a></li>
|
6
|
+
<li><a href="auth">Authentication</a></li>
|
7
|
+
<li><a href="dashboard">Dashboard</a></li>
|
8
|
+
</ul>
|
9
|
+
</nav>
|
10
|
+
<div class="navbar__menu-mob"><a href="" id='toggle'><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" class=""></path></svg></a></div>
|
11
|
+
</div>
|
@@ -0,0 +1 @@
|
|
1
|
+
<script src='assets/js/app.min.js'></script>
|
data/_layouts/404.html
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
<!-- Hero(extended) navbar -->
|
8
|
+
<div class="navbar navbar--extended">
|
9
|
+
<nav class="nav__mobile"></nav>
|
10
|
+
<div class="container">
|
11
|
+
{% include navbar-inner.html %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<!-- Hero unit -->
|
16
|
+
<div class="hero">
|
17
|
+
<div class="hero__overlay hero__overlay--gradient"></div>
|
18
|
+
<div class="hero__mask"></div>
|
19
|
+
<div class="hero__inner">
|
20
|
+
<div class="container">
|
21
|
+
<div class="hero__content">
|
22
|
+
<div class="hero__content__inner" id='navConverter'>
|
23
|
+
<h1 class="hero__title">404 Page Not Found</h1>
|
24
|
+
<p class="hero__text">This page couldn't be found. It might have been deleted or moved.</p>
|
25
|
+
<a href="index" class="button button__accent">Go Home</a>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
{% include footer-light.html %}
|
33
|
+
|
34
|
+
{% include scripts.html %}
|
35
|
+
</body>
|
36
|
+
|
37
|
+
</html>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
<!-- Hero(extended) navbar -->
|
8
|
+
<div class="navbar navbar--extended">
|
9
|
+
<nav class="nav__mobile"></nav>
|
10
|
+
<div class="container">
|
11
|
+
{% include navbar-inner.html %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
{{ content }}
|
16
|
+
|
17
|
+
{% include footer-dark.html %}
|
18
|
+
|
19
|
+
{% include scripts.html %}
|
20
|
+
</body>
|
21
|
+
|
22
|
+
</html>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
.container{
|
2
|
+
width: $containerWidth;
|
3
|
+
max-width: $containerMax;
|
4
|
+
margin: 0 auto;
|
5
|
+
position: relative;
|
6
|
+
}
|
7
|
+
|
8
|
+
.row{
|
9
|
+
display: block;
|
10
|
+
width: 100%;
|
11
|
+
clear: both;
|
12
|
+
}
|
13
|
+
|
14
|
+
|
15
|
+
.half{
|
16
|
+
width: 50%;
|
17
|
+
overflow: auto;
|
18
|
+
float:left;
|
19
|
+
}
|
20
|
+
|
21
|
+
.text-container{
|
22
|
+
max-width: $text-container;
|
23
|
+
|
24
|
+
&--center{
|
25
|
+
margin-left: auto;
|
26
|
+
margin-right: auto;
|
27
|
+
}
|
28
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
html{
|
2
|
+
box-sizing: border-box;
|
3
|
+
background-color: $background;
|
4
|
+
}
|
5
|
+
|
6
|
+
*, *:before, *:after {
|
7
|
+
box-sizing: inherit;
|
8
|
+
}
|
9
|
+
|
10
|
+
.invisible{
|
11
|
+
opacity: 0;
|
12
|
+
transition: 0.7s;
|
13
|
+
}
|
14
|
+
|
15
|
+
.fakefield{
|
16
|
+
display: none;
|
17
|
+
}
|
18
|
+
|
19
|
+
.left-align{
|
20
|
+
text-align: left;
|
21
|
+
}
|
22
|
+
|
23
|
+
.center, center-align{
|
24
|
+
text-align: center;
|
25
|
+
}
|
26
|
+
|
27
|
+
.right-align{
|
28
|
+
text-align: right;
|
29
|
+
}
|
30
|
+
|
31
|
+
.stress{
|
32
|
+
color: $text-dark;
|
33
|
+
}
|
34
|
+
|
35
|
+
img, svg{
|
36
|
+
max-width: 100%;
|
37
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
// Colors
|
2
|
+
$primary: #6C63FF;
|
3
|
+
$secondary: #4641FF;
|
4
|
+
$accent: #06d19c;
|
5
|
+
$primary-dark: darken($primary,8%);
|
6
|
+
$text: #666;
|
7
|
+
$text-dark: #111;
|
8
|
+
$background: #ffffff;
|
9
|
+
$background-alt: #f7f7f7;
|
10
|
+
$background-dark: #333C44;
|
11
|
+
$line: #eee;
|
12
|
+
$success: $accent;
|
13
|
+
$error: tomato;
|
14
|
+
|
15
|
+
// Typography
|
16
|
+
$font: "Lato",sans-serif;
|
17
|
+
$font-size: 15px;
|
18
|
+
$line-height: 1.7;
|
19
|
+
$light: 300;
|
20
|
+
$normal: 400;
|
21
|
+
$bold: 700;
|
22
|
+
|
23
|
+
// Other variables
|
24
|
+
$radius: 30px;
|
25
|
+
|
26
|
+
// Containers
|
27
|
+
$containerWidth: 88%; // Percentage of screen width
|
28
|
+
$containerMax: 1080px; // Largest fixed width
|
29
|
+
$text-container: 640px; // Limit texts for readability
|
30
|
+
|
31
|
+
// Media queries
|
32
|
+
$tablet-width: 600px !default; // Tablets
|
33
|
+
$desktop-width: 992px !default; // Desktops & Laptops
|
34
|
+
$huge-width: 1400px !default; // Large Desktops
|
35
|
+
|
36
|
+
/* Components */
|
37
|
+
|
38
|
+
// Navigation bar
|
39
|
+
$navbar-height: 60px; // Height for navigation globally
|
40
|
+
$navbar-height-extended: 70px; // Extended height for navigation => Used on landing
|
41
|
+
|
42
|
+
// Hero
|
43
|
+
$hero-color: $background;
|
44
|
+
$hero-shadow: 0 4px 11px rgba(124,146,169,0.5);
|
45
|
+
$hero-color-opacity: 0.96;
|
46
|
+
$hero-mask-opacity: 0.66;
|
47
|
+
$hero-down-size: 1rem;
|
@@ -0,0 +1,74 @@
|
|
1
|
+
.app__header{
|
2
|
+
position:relative;
|
3
|
+
color: $hero-color;
|
4
|
+
box-shadow: $hero-shadow;
|
5
|
+
width: 100%;
|
6
|
+
}
|
7
|
+
|
8
|
+
.app__header__inner{
|
9
|
+
padding: #{$navbar-height * 1.1} 0 0 0;
|
10
|
+
position: relative;
|
11
|
+
z-index: 3;
|
12
|
+
}
|
13
|
+
|
14
|
+
.app__header__content{
|
15
|
+
display: flex;
|
16
|
+
align-items: center;
|
17
|
+
justify-content: center;
|
18
|
+
padding: 32pt 0;
|
19
|
+
overflow: auto;
|
20
|
+
|
21
|
+
// This div allows normal behaviors for contained elements instead of flexbox aligning them
|
22
|
+
&__inner{
|
23
|
+
width: 100%;
|
24
|
+
max-width: 66ch;
|
25
|
+
text-align: center;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
/*--- CONTENT STYLING ---*/
|
30
|
+
.app__header__title{
|
31
|
+
color: inherit;
|
32
|
+
margin-bottom: 1.25em;
|
33
|
+
}
|
34
|
+
|
35
|
+
.app__header__text{
|
36
|
+
opacity: 0.85;
|
37
|
+
line-height: 1.7;
|
38
|
+
text-align: left;
|
39
|
+
}
|
40
|
+
|
41
|
+
.app{
|
42
|
+
padding: calc( #{ $navbar-height + 16pt }) 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
.app__inner{
|
46
|
+
|
47
|
+
@include desktop{
|
48
|
+
display: flex;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
.app__menu{
|
53
|
+
width: 100%;
|
54
|
+
position: relative;
|
55
|
+
|
56
|
+
@include desktop{
|
57
|
+
display: block;
|
58
|
+
width: 300px;
|
59
|
+
flex-shrink: 0;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
|
64
|
+
.app__main{
|
65
|
+
flex-grow: 1;
|
66
|
+
}
|
67
|
+
|
68
|
+
.app__main__title{
|
69
|
+
margin-top: 0.75em;
|
70
|
+
}
|
71
|
+
|
72
|
+
.app__image{
|
73
|
+
max-width:100%;
|
74
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
.auth{
|
2
|
+
padding-top: $navbar-height + 32pt;
|
3
|
+
}
|
4
|
+
|
5
|
+
.auth__inner{
|
6
|
+
min-height: calc( 100vh - #{$navbar-height + 96pt}); // Triple so that the bottom is largely padded too...
|
7
|
+
display: flex;
|
8
|
+
align-items: center;
|
9
|
+
flex-direction: column;
|
10
|
+
justify-content: center;
|
11
|
+
|
12
|
+
@include desktop{
|
13
|
+
flex-direction: row;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
.auth__media{
|
18
|
+
|
19
|
+
@include desktop{
|
20
|
+
width: 50%;
|
21
|
+
flex-shrink: 0;
|
22
|
+
}
|
23
|
+
|
24
|
+
img,svg{
|
25
|
+
max-height: 150px;
|
26
|
+
max-width: 90%;
|
27
|
+
@include noDragging;
|
28
|
+
@include noSelect;
|
29
|
+
|
30
|
+
@include tablet{
|
31
|
+
max-height: 300px;
|
32
|
+
}
|
33
|
+
|
34
|
+
@include desktop{
|
35
|
+
max-height: 400px;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
.auth__auth{
|
41
|
+
text-align: center;
|
42
|
+
|
43
|
+
@include desktop{
|
44
|
+
width: 50%;
|
45
|
+
flex-shrink: 0;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
// Page title for auth must be h1 but with the sizing of h2
|
50
|
+
.auth__title{
|
51
|
+
font-size: 1.728em;
|
52
|
+
}
|