wunsh-theme 0.1.5 → 0.1.7
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 +4 -4
- data/_includes/menu.html +2 -0
- data/_includes/modals.html +20 -0
- data/_layouts/default.html +1 -0
- data/_sass/_buttons.scss +24 -0
- data/_sass/_helpers.scss +3 -1
- data/_sass/components/_menu.scss +16 -0
- data/_sass/components/_modal.scss +58 -0
- data/assets/css/style.scss +2 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2e7acc4d872009c5ba2eeab0993c5844a30c048
|
|
4
|
+
data.tar.gz: 3236b7a4a33b31c73b1c245254736634235956d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3761f89d0514ea745c8407f0d95fe783dac202e2b13e0facbcf265581e7551095a679269225c4b0ea17470be48296c75615d4cd32a6ba8f872e094ca0be7050a
|
|
7
|
+
data.tar.gz: ff7ff5c482446ec537b6d9fafdc2230fbe40e3ff2a2bf77b3da982dee4ca2da7fe146ec344c0cb830e297a1827978e7e4a7bd3450aef3c7745c39267b63fe75a
|
data/_includes/menu.html
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<div id="modal" class="modal">
|
|
2
|
+
<div class="modal__content">
|
|
3
|
+
<a href="#close" title="Close" class="modal__close">x</a>
|
|
4
|
+
|
|
5
|
+
<h2 class="modal__title">Ламповая рассылка про Эликсир</h2>
|
|
6
|
+
|
|
7
|
+
<p>Один-два раза в неделю присылаем тёплые письма об Эликсире: переводы самых интересных статей до их появления в открытом доступе, анонсы событий и вкусные бонусы.</p>
|
|
8
|
+
|
|
9
|
+
<form action="//wunsh.us14.list-manage.com/subscribe/post?u=c81ca3d4693f62db7f7f67c71&id=a192e2dfef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="pure-form tc validate" target="_blank" novalidate>
|
|
10
|
+
<input type="email" value="" name="EMAIL" class="modal__input pure-input-rounded large" id="mce-EMAIL" placeholder="Твоя почта" required>
|
|
11
|
+
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_c81ca3d4693f62db7f7f67c71_a192e2dfef" tabindex="-1" value=""></div>
|
|
12
|
+
|
|
13
|
+
<input type="submit" value="Присоединиться" name="subscribe" id="mc-embedded-subscribe" class="pure-button button-success large">
|
|
14
|
+
</form>
|
|
15
|
+
|
|
16
|
+
<p>Обязательно подтверди почту, перейдя по ссылке в письме, иначе мы не сможем делиться с тобой полезностями.</p>
|
|
17
|
+
|
|
18
|
+
<p>Надоедать точно не будем :)</p>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
data/_layouts/default.html
CHANGED
data/_sass/_buttons.scss
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.button-success,
|
|
2
|
+
.button-error,
|
|
3
|
+
.button-warning,
|
|
4
|
+
.button-secondary {
|
|
5
|
+
color: $link-color;
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.button-success {
|
|
11
|
+
background: $main-color;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.button-error {
|
|
15
|
+
background: rgb(202, 60, 60);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.button-warning {
|
|
19
|
+
background: rgb(223, 117, 20);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.button-secondary {
|
|
23
|
+
background: rgb(66, 184, 221);
|
|
24
|
+
}
|
data/_sass/_helpers.scss
CHANGED
data/_sass/components/_menu.scss
CHANGED
|
@@ -39,6 +39,22 @@
|
|
|
39
39
|
color: $text-color;
|
|
40
40
|
white-space: nowrap;
|
|
41
41
|
}
|
|
42
|
+
|
|
43
|
+
&__subscribe_link {
|
|
44
|
+
background: rgba(0,0,0,0);
|
|
45
|
+
border: 2px solid #fff;
|
|
46
|
+
font-variant: small-caps;
|
|
47
|
+
color: #fff;
|
|
48
|
+
border-radius: 25px;
|
|
49
|
+
margin-top: 36px;
|
|
50
|
+
|
|
51
|
+
&:hover,
|
|
52
|
+
&:focus {
|
|
53
|
+
text-decoration: none;
|
|
54
|
+
color: $header-color;
|
|
55
|
+
border-color: $header-color;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
42
58
|
}
|
|
43
59
|
|
|
44
60
|
.nav_list {
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
.modal {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
background: rgba(0, 0, 0, 0.75);
|
|
8
|
+
z-index: 99999;
|
|
9
|
+
opacity: 0;
|
|
10
|
+
-webkit-transition: opacity 150ms ease-in;
|
|
11
|
+
-moz-transition: opacity 150ms ease-in;
|
|
12
|
+
transition: opacity 150ms ease-in;
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
|
|
15
|
+
&:target {
|
|
16
|
+
opacity: 1;
|
|
17
|
+
pointer-events: auto;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&__content {
|
|
21
|
+
width: 80%;
|
|
22
|
+
max-width: 480px;
|
|
23
|
+
position: relative;
|
|
24
|
+
margin: 10% auto;
|
|
25
|
+
padding: 5px 20px 13px 20px;
|
|
26
|
+
background: $link-color;
|
|
27
|
+
border-radius: 3px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&__title {
|
|
31
|
+
margin-top: 0.75rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__input {
|
|
35
|
+
display: inline-block !important;
|
|
36
|
+
margin: .25em auto .3em;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&__close {
|
|
40
|
+
background: $header-color;
|
|
41
|
+
color: $link-color;
|
|
42
|
+
line-height: 25px;
|
|
43
|
+
position: absolute;
|
|
44
|
+
top: 14px;
|
|
45
|
+
right: 14px;
|
|
46
|
+
text-align: center;
|
|
47
|
+
width: 24px;
|
|
48
|
+
text-decoration: none;
|
|
49
|
+
border-radius: 50%;
|
|
50
|
+
|
|
51
|
+
&:hover,
|
|
52
|
+
&:focus {
|
|
53
|
+
background: $text-color;
|
|
54
|
+
color: $grey-color;
|
|
55
|
+
text-decoration: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
data/assets/css/style.scss
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
@import "variables";
|
|
5
5
|
@import "mixins";
|
|
6
6
|
@import "helpers";
|
|
7
|
+
@import "buttons";
|
|
7
8
|
@import "syntax_highlighting";
|
|
8
9
|
@import "main";
|
|
9
10
|
|
|
@@ -16,3 +17,4 @@
|
|
|
16
17
|
@import "components/intro";
|
|
17
18
|
@import "components/tags_cloud";
|
|
18
19
|
@import "components/pagination";
|
|
20
|
+
@import "components/modal";
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wunsh-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wunsh.ru
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- _includes/head.html
|
|
81
81
|
- _includes/intro.html
|
|
82
82
|
- _includes/menu.html
|
|
83
|
+
- _includes/modals.html
|
|
83
84
|
- _includes/pagination.html
|
|
84
85
|
- _includes/post_list.html
|
|
85
86
|
- _includes/post_main.html
|
|
@@ -92,6 +93,7 @@ files:
|
|
|
92
93
|
- _layouts/home.html
|
|
93
94
|
- _layouts/page.html
|
|
94
95
|
- _layouts/post.html
|
|
96
|
+
- _sass/_buttons.scss
|
|
95
97
|
- _sass/_helpers.scss
|
|
96
98
|
- _sass/_main.scss
|
|
97
99
|
- _sass/_mixins.scss
|
|
@@ -102,6 +104,7 @@ files:
|
|
|
102
104
|
- _sass/components/_home.scss
|
|
103
105
|
- _sass/components/_intro.scss
|
|
104
106
|
- _sass/components/_menu.scss
|
|
107
|
+
- _sass/components/_modal.scss
|
|
105
108
|
- _sass/components/_pagination.scss
|
|
106
109
|
- _sass/components/_post.scss
|
|
107
110
|
- _sass/components/_post_small.scss
|