sora-elegant-theme 0.1.2 → 0.1.3

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
  SHA1:
3
- metadata.gz: d6e65f80bf28001c15a232b8f8e71dc0dbedddad
4
- data.tar.gz: 3f6b8c1a2941ab194b360363547e9293e64e591a
3
+ metadata.gz: 81fd082b10476ac89f88a86795020f46c7768c35
4
+ data.tar.gz: 1d4a2f8e7e898303ee094e08e7e38cc37c2463e3
5
5
  SHA512:
6
- metadata.gz: 5af4012cb91883655730cc42efeea85b8d483c28e98ce5e7540bf2b875d190da678c2577f5ff781776c228a08048b428b7cd39b9c38601ad427e013c8d4c78a1
7
- data.tar.gz: 1ac09494a378139ebe00aff437f9e2007a2c0576381e7b0519ac8f3ed4592b0becdc790608e59c55d05466c510ca5922a64801ee63de52f27828cb6cf9c307ed
6
+ metadata.gz: 68ab180e3a52cfd3fb40cdf1491e06818c41c055aec96d3ca3908c39e59cdef8b9fcef728e9e3fd528885c1a2203bc6620dd02a56d604f29e653a38819c8eeab
7
+ data.tar.gz: 55b19c324895154e23a1f1c9f3ff8ce8f560caf39843cc216ada9c460a03550f77b9d15940cb54ff7208029d2198dc4d3e55939ea019705cce41a3b453b324b3
data/README.md CHANGED
@@ -27,13 +27,9 @@ Or install it yourself as:
27
27
  $ gem install sora-elegant-theme
28
28
 
29
29
  ## Usage
30
+
30
31
 
31
- Add paginate Gem to your `Gemfile`:
32
- ```Ruby
33
- gem "jekyll-paginate"
34
- ```
35
-
36
- And add this line to your Jekyll site's `_config.yml`:
32
+ Add this line to your Jekyll site's `_config.yml`:
37
33
  ```yaml
38
34
  plugins:
39
35
  - jekyll-paginate
@@ -1,7 +1,7 @@
1
1
 
2
2
  <div class="header pageTitle">
3
3
  <div class="container pageTitle">
4
- <h1 class="pageTitle"><a href="{{ site.baseurl }}/">ELEGANT THEME</a></h1>
4
+ <h1 class="pageTitle"><a href="{{ site.baseurl }}/">{{site.title}}</a></h1>
5
5
 
6
6
  <nav class="nav-collapse">
7
7
  <ul class="noList">
@@ -0,0 +1,18 @@
1
+
2
+ // Brand colours
3
+ $theme-color: #337ab7;
4
+ $brand-color: #fff;
5
+ $background-color: #fff;
6
+ $border-color: rgba(0, 0, 0, 0.1);
7
+
8
+ // Typography colours
9
+ $text-color: #383838;
10
+ $link-color: $theme-color; // #1ABC9C;
11
+ $selection-color: #D4D4D4; // visible when highlighting text
12
+ $blockquote-color: #EEF7FA; // $background-color;
13
+
14
+ //Search color
15
+ $link-shadow: transparentize($link-color, .6); //rgba(26, 188, 156, 0.6);
16
+ $text-shadow: #3f3f3f;
17
+ $search-color: #999;
18
+
@@ -0,0 +1,54 @@
1
+ .search-bar {
2
+ display: block;
3
+ width: 100%;
4
+ height: 46px;
5
+ padding: 6px 12px;
6
+ font-size: 18px;
7
+ line-height: 1.43;
8
+ color: $text-color;
9
+ background: $background-color none;
10
+ border: 1px solid #ccc;
11
+ border-radius: 4px;
12
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
13
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
14
+ -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
15
+ -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
16
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
17
+
18
+ &:focus,
19
+ &:hover {
20
+ border-color: $link-color;
21
+ outline: 0;
22
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px $link-shadow;
23
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px $link-shadow;
24
+ }
25
+
26
+ &::-moz-placeholder {
27
+ color: $search-color;
28
+ opacity: 1;
29
+ }
30
+
31
+ &:-ms-input-placeholder,
32
+ &::-webkit-input-placeholder {
33
+ color: $search-color;
34
+ }
35
+
36
+ input {
37
+ &[type=text] {
38
+ height: 46px;
39
+ padding: 10px 16px;
40
+ font-size: 18px;
41
+ line-height: 1.33;
42
+ border-radius: 6px;
43
+ }
44
+ }
45
+ }
46
+
47
+ .search-title a {
48
+ h3 {
49
+ margin: 0;
50
+ }
51
+ &:hover {
52
+ text-decoration: none;
53
+ }
54
+ }
@@ -0,0 +1,5 @@
1
+
2
+ @import 'base/variables';
3
+
4
+ @import 'layouts/search';
5
+
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sora-elegant-theme
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
  - soragui
@@ -97,6 +97,9 @@ files:
97
97
  - _layouts/page.html
98
98
  - _layouts/post.html
99
99
  - _layouts/search.html
100
+ - _sass/base/_variables.scss
101
+ - _sass/layouts/_search.scss
102
+ - _sass/sora-elegant-theme.scss
100
103
  - assets/.DS_Store
101
104
  - assets/css/.DS_Store
102
105
  - assets/css/main.scss