forest-time-jekyll 0.2.5 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcfeee204f27fab08ae8390b7fba6c953655c082f20ddce714079007b699db58
4
- data.tar.gz: ce6c358aa0ae9c09fa6c80941f416ed37c7d312ad42a58b7b15dd2573b4096c7
3
+ metadata.gz: fba3f2d8908c002a366e5106de14dc45db9c78d4a682347690aad21d252e232d
4
+ data.tar.gz: 6a6d60dabecc566a70b94960bc74f0a6dc0c5e32dcf5339c5eb6ea66b81a8f75
5
5
  SHA512:
6
- metadata.gz: 628d6eb25bed088ec3e946e791f3608985c4aa07ec660ce8b632b041e0250e9005e3813f0d8be28c38d3b1266a6531f5018c2a47b4baffbb6993349e5e8a27cd
7
- data.tar.gz: 7bc91403431c9977adbff092194ab42285bc7afbde395b15205789513913e0758433c0a4d3d68b9d1e286eb408f0d68919861492569e112ed8059ad9830a88e3
6
+ metadata.gz: e32a7430124e78452ea05f7c6718c0749f243e3e94f1f165ae0cdb9757662e14fd1deba4da0697a01134f106a3d3809c070a5544815d0b33813b74007aeac7e2
7
+ data.tar.gz: bc82c39b12ee3e257ada78a18c6c6e5fc09bf39154e9e53096b552f322abe01809629be88b97b6e88ad54c46621b3799992a7d9e653b7b207842b6efcc64cee2
data/_data/ui-text.yml CHANGED
@@ -18,6 +18,11 @@ noComments : "Yup, there's no comment section, but I can always be contac
18
18
  next : "Next"
19
19
  newsletterNotice : "Get the latest news straight to your inbox:"
20
20
  subscribe : "Subscribe"
21
+ submit : "Submit"
22
+ sending : "...sending"
23
+ yourName : "Your name"
24
+ yourEmail : "Your email (so I can get back to you)"
25
+ yourMessage : "Type a message..."
21
26
  xml_feed : "XML feed"
22
27
 
23
28
  months:
@@ -0,0 +1,114 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);
2
+ * {
3
+ box-sizing: border-box;
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-font-smoothing: antialiased;
8
+ -o-font-smoothing: antialiased;
9
+ text-rendering: optimizeLegibility;
10
+ }
11
+
12
+ .container {
13
+ width: 100%;
14
+ margin: 0 auto;
15
+ position: relative;
16
+ }
17
+
18
+ #contact {
19
+ background: #F9F9F9;
20
+ padding: 25px;
21
+ margin: 50px 0;
22
+ }
23
+
24
+ #contact h3 {
25
+ color: #F96;
26
+ display: block;
27
+ font-size: 30px;
28
+ font-weight: 400;
29
+ }
30
+
31
+ #contact h4 {
32
+ margin: 5px 0 15px;
33
+ display: block;
34
+ }
35
+
36
+ fieldset {
37
+ border: medium none !important;
38
+ margin: 0 0 10px;
39
+ min-width: 100%;
40
+ padding: 0;
41
+ width: 100%;
42
+ }
43
+
44
+ #contact input[type="text"],
45
+ #contact input[type="email"],
46
+ #contact input[type="tel"],
47
+ #contact input[type="url"],
48
+ #contact textarea {
49
+ width: 100%;
50
+ border: 1px solid #CCC;
51
+ background: #FFF;
52
+ margin: 0 0 5px;
53
+ padding: 10px;
54
+ }
55
+
56
+ #contact input[type="text"]:hover,
57
+ #contact input[type="email"]:hover,
58
+ #contact input[type="tel"]:hover,
59
+ #contact input[type="url"]:hover,
60
+ #contact textarea:hover {
61
+ -webkit-transition: border-color 0.3s ease-in-out;
62
+ -moz-transition: border-color 0.3s ease-in-out;
63
+ transition: border-color 0.3s ease-in-out;
64
+ border: 1px solid #AAA;
65
+ }
66
+
67
+ #contact textarea {
68
+ height: 200px;
69
+ min-height: 100px;
70
+ max-width: 100%;
71
+ }
72
+
73
+ #contact button[type="submit"] {
74
+ cursor: pointer;
75
+ width: 100%;
76
+ border: none;
77
+ background: #0CF;
78
+ color: #FFF;
79
+ margin: 0 0 5px;
80
+ padding: 10px;
81
+ }
82
+
83
+ #contact button[type="submit"]:hover {
84
+ background: #09C;
85
+ -webkit-transition: background 0.3s ease-in-out;
86
+ -moz-transition: background 0.3s ease-in-out;
87
+ transition: background-color 0.3s ease-in-out;
88
+ }
89
+
90
+ #contact button[type="submit"]:active {
91
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
92
+ }
93
+
94
+ #contact input:focus,
95
+ #contact textarea:focus {
96
+ outline: 0;
97
+ border: 1px solid #999;
98
+ }
99
+
100
+ ::-webkit-input-placeholder {
101
+ color: #888;
102
+ }
103
+
104
+ :-moz-placeholder {
105
+ color: #888;
106
+ }
107
+
108
+ ::-moz-placeholder {
109
+ color: #888;
110
+ }
111
+
112
+ :-ms-input-placeholder {
113
+ color: #888;
114
+ }
data/assets/css/core.scss CHANGED
@@ -4,4 +4,5 @@
4
4
  ---
5
5
 
6
6
  @import 'main';
7
+ @import 'contact-form';
7
8
  @import 'syntax';
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest-time-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claudiu Constantin
@@ -76,6 +76,7 @@ files:
76
76
  - _layouts/post.html
77
77
  - _sass/_objects.image.scss
78
78
  - _sass/_objects.text.scss
79
+ - _sass/contact-form.scss
79
80
  - _sass/main.scss
80
81
  - _sass/syntax.scss
81
82
  - assets/css/core.scss