superwriter 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d6cf955fb947add17144033801c3a1c64a89cb4
4
- data.tar.gz: 435a3240301b077a391f195dac474e1cac690d27
3
+ metadata.gz: da497e969f8e591d7fb17a9680ee7772485b8ed7
4
+ data.tar.gz: fafc7ed2db44fcccb38f5bcd61292c6e76fa6ff7
5
5
  SHA512:
6
- metadata.gz: 712d68de157eea5792ade81de3cd685cbe77d185cc294727567fa9274a3313befc9c30cd6d12894b84335f978ddaa93f298eb37dc0fb5678d31bd0d08dd50b28
7
- data.tar.gz: 0b59d5d85ac9b3057b807b3e1adb908e7f585d18efcd4cf42d035607c7f0a94c4f640f58d03c62a43056da7edd8550646727cc962bf2e008d22a47ab47f5ca64
6
+ metadata.gz: f0bc7b67ca013034fba3657e6f826225a220ecdd27d549aeb3b3e93d57dabbc41b72648fa95b528551100ed38a6fd73c482e2bcc977d6d4816f90e4d896dfeb3
7
+ data.tar.gz: e3bdc49c7f48134b128f687a65ab7cd326e248c614b69b0b0a6bc8267b927029ea5c54c886aa9e05647b4468d09152066bc0b96e14d9dd31bc3ac2f2e53f3e98
@@ -2,7 +2,6 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
-
6
5
  {% if page.image %}
7
6
  <figure>
8
7
  <img alt="{{page.title}}" src="{{site.baseurl}}{{page.image}}" />
@@ -0,0 +1,137 @@
1
+ $dark-blue-tone: #2c3e50;
2
+ $mid-dark-blue-tone: #5D6D7E; //#34495e;
3
+ $light-dark-blue-tone: #85929E;
4
+
5
+ .dark.login {
6
+ background-color: $dark-blue-tone;
7
+ color: $light-dark-blue-tone;
8
+ }
9
+
10
+ header.login {
11
+ margin: 0 auto;
12
+ padding: 0;
13
+ margin-bottom: 2rem;
14
+ }
15
+
16
+ header.login p {
17
+ padding: 0; margin:0;
18
+ }
19
+
20
+ p.big {
21
+ font-size: $big-font-size;
22
+ }
23
+
24
+ p.center.text {
25
+ text-align: center;
26
+ margin: 0;
27
+ padding:0;
28
+ }
29
+
30
+ .login.logo {
31
+ width: 100px;
32
+ margin: 0 auto;
33
+ padding: 4rem 0 2rem 0;
34
+ }
35
+
36
+ input {
37
+ font-size: $regular-font-size;
38
+ border: 0px;
39
+ padding-top: $regular-font-size;
40
+ padding-bottom: $script-font-size;
41
+ width: 100%;
42
+ border-bottom: 2px solid $light-gray;
43
+ outline: none;
44
+ color: $light-gray;
45
+ }
46
+
47
+ .dark.login input {
48
+ background-color: $dark-blue-tone;
49
+ border-bottom: 1px solid $light-dark-blue-tone;
50
+ }
51
+
52
+
53
+ .btn {
54
+ text-align: center;
55
+ width: 6rem;
56
+ font-size: $regular-font-size;
57
+ margin: $regular-font-size $script-font-size 0 0;;
58
+ padding: $script-font-size 0;
59
+ border-radius: 4px;
60
+ background-color: white;
61
+ box-shadow: none;
62
+ border: 2px solid $light-gray;
63
+ color: $light-gray;
64
+ outline: none;
65
+ }
66
+ .btn:active{
67
+ opacity: 0.8;
68
+ // transition: all 0.1s;
69
+ }
70
+ .btn.action {
71
+ background-color: $brand-blue;
72
+ border-color: $brand-blue;
73
+ color: white;
74
+ }
75
+ .btn.secondary {}
76
+ .btn.alert {
77
+ background-color: $opaque-red;
78
+ border-color: $opaque-red;
79
+ color: white;
80
+ }
81
+ .btn.full-width {width: 100%;}
82
+
83
+ ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
84
+ color: $mid-dark-blue-tone;
85
+ }
86
+ ::-moz-placeholder { /* Firefox 19+ */
87
+ color: pink;
88
+ }
89
+ :-ms-input-placeholder { /* IE 10+ */
90
+ color: pink;
91
+ }
92
+ :-moz-placeholder { /* Firefox 18- */
93
+ color: pink;
94
+ }
95
+
96
+ .box{
97
+ border-radius: 10px;
98
+ padding: 1rem 2rem;
99
+ line-height: 1.2;
100
+ margin: 0.2rem auto;
101
+ transition: all .25s ease;
102
+ }
103
+ .alert.box {
104
+ font-size: $small-font-size;
105
+ background-color: #e74c3c;
106
+ color: #F5B7B1;
107
+ }
108
+
109
+ .secondary.alert.box {
110
+ background-color: #9b59b6;
111
+ color: #D7BDE2;
112
+ }
113
+
114
+ .positive.box {
115
+ background-color: #2ecc71;
116
+ color: #ABEBC6;
117
+ }
118
+ .confirmation.box{
119
+ text-align: center;
120
+ }
121
+
122
+
123
+ // ------------------------------------------------
124
+ // GENERAL CLASSES
125
+ // ------------------------------------------------
126
+ .hide {
127
+ display: none;
128
+ }
129
+ .footnote {
130
+ font-size: $script-font-size;
131
+ }
132
+ .center {
133
+ text-align: center;
134
+ }
135
+ .light, .light a {
136
+ color: $light-gray;
137
+ }
@@ -18,3 +18,4 @@ $desktop: 1024px;
18
18
  @import "palettes";
19
19
  @import "typography";
20
20
  @import "layout";
21
+ @import "form";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: superwriter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Rao
@@ -14,42 +14,42 @@ dependencies:
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.12'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.12'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.9.6
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.9.6
55
55
  description:
@@ -69,6 +69,7 @@ files:
69
69
  - _layouts/index.html
70
70
  - _layouts/not-found.html
71
71
  - _layouts/post.html
72
+ - _sass/form.scss
72
73
  - _sass/layout.scss
73
74
  - _sass/old-layout.scss
74
75
  - _sass/palettes.scss
@@ -86,17 +87,17 @@ require_paths:
86
87
  - lib
87
88
  required_ruby_version: !ruby/object:Gem::Requirement
88
89
  requirements:
89
- - - '>='
90
+ - - ">="
90
91
  - !ruby/object:Gem::Version
91
92
  version: '0'
92
93
  required_rubygems_version: !ruby/object:Gem::Requirement
93
94
  requirements:
94
- - - '>='
95
+ - - ">="
95
96
  - !ruby/object:Gem::Version
96
97
  version: '0'
97
98
  requirements: []
98
99
  rubyforge_project:
99
- rubygems_version: 2.0.14.1
100
+ rubygems_version: 2.6.10
100
101
  signing_key:
101
102
  specification_version: 4
102
103
  summary: Superwriter is a minimalistic Jekyll theme for bloggers with post hero image