forest-time-jekyll 0.2.5 → 0.2.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/_data/ui-text.yml +5 -0
- data/_sass/contact-form.scss +114 -0
- data/assets/css/core.scss +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fba3f2d8908c002a366e5106de14dc45db9c78d4a682347690aad21d252e232d
|
4
|
+
data.tar.gz: 6a6d60dabecc566a70b94960bc74f0a6dc0c5e32dcf5339c5eb6ea66b81a8f75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
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.
|
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
|