yefeme 0.2.2 → 0.2.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/yefeme.scss +47 -36
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1284975ca792bbfdb1e3e743c94c505c84170750
4
- data.tar.gz: db5118239e5da3648bed3ec19726938819b81483
3
+ metadata.gz: 45d6339234e433682371464af550b8d28173b0b1
4
+ data.tar.gz: 1bc08a35149bb9e6306e71c315cf1c8713481444
5
5
  SHA512:
6
- metadata.gz: c8f782e21fd54f2fc33369dce3ec01f1f72c8867cd51f03953b921ea848f03342ed0dce1403ec6be64f3a068c258d851c40b662c576ed79bd40cf0c81f03b845
7
- data.tar.gz: 2c5e585700686593b1f5e1466fd3e8d8c7e52120161d111391103c29bd5ec24e9966ff41e0947cb8f8610b6a95fdd3076f276624943e1bcc90fce9adb8f0fbc7
6
+ metadata.gz: 9a8ae7914169024fa5e92f991f2d9f431debeccf1f2a91277c9c2a79c8d9ab29210918147abafd3f1de3a0c310b7efba84c6ab73db7883c81d06ba7c202f0bd6
7
+ data.tar.gz: c0cc24535d28ce20b67d6427b22f03f08c3292a79bae45e6633c218a2030097350df331842d629cd87c3873fef75ba3800bda5f71bf957824f0fea5ab0688cef
data/_sass/yefeme.scss CHANGED
@@ -7,11 +7,11 @@ $base-line-height: 1.5 !default;
7
7
  $width: 760px;
8
8
  $spacing: 30px;
9
9
 
10
- $white: #FCFCFC !default;
10
+ $white: #fcfcfc !default;
11
11
  $primary: #242325 !default;
12
- $secondary: #84828F !default;
13
- $accent: #ED254E !default;
14
- $light-gray: #E8E8EA !default;
12
+ $secondary: #84828f !default;
13
+ $accent: #ed254e !default;
14
+ $light-gray: #e8e8ea !default;
15
15
 
16
16
  html {
17
17
  box-sizing: border-box;
@@ -38,7 +38,12 @@ body {
38
38
  font-kerning: normal;
39
39
  }
40
40
 
41
- h1, h2, h3, h4, h5, a {
41
+ h1,
42
+ h2,
43
+ h3,
44
+ h4,
45
+ h5,
46
+ a {
42
47
  font-family: 'Varela Round', sans-serif;
43
48
  font-weight: 400;
44
49
  }
@@ -55,26 +60,6 @@ ul {
55
60
  padding: 0;
56
61
  }
57
62
 
58
- .content h2 {
59
- margin: 0;
60
- }
61
-
62
- .post-list li {
63
- h2 {
64
- font-size: 22px;
65
- line-height: 30px;
66
- margin: 0;
67
- display: inline-block;
68
- font-weight: 400;
69
- }
70
- span {
71
- float: right;
72
- font-size: .75em;
73
- color: #84828F;
74
- text-align: right;
75
- }
76
- }
77
-
78
63
  a,
79
64
  a:hover,
80
65
  a:active,
@@ -99,6 +84,10 @@ a:hover {
99
84
  margin: 0 auto;
100
85
  max-width: $width;
101
86
  padding: 0 $spacing;
87
+
88
+ h2 {
89
+ margin: 0;
90
+ }
102
91
  }
103
92
 
104
93
  main {
@@ -106,7 +95,7 @@ main {
106
95
  }
107
96
 
108
97
  header {
109
- margin: 0px 0 20px;
98
+ margin: 0 0 20px;
110
99
  padding: 20px 0;
111
100
 
112
101
  a,
@@ -117,29 +106,36 @@ header {
117
106
  }
118
107
 
119
108
  a:hover {
120
- border-bottom: none;
109
+ border-bottom: 0;
121
110
  }
122
111
  }
123
112
 
124
113
  footer {
125
114
  .content {
115
+ border-top: 1px solid $light-gray;
126
116
  display: flex;
127
117
  justify-content: space-between;
128
- border-top: 1px solid #E8E8EA;
129
118
  padding: 20px 30px;
130
119
  }
120
+
131
121
  .copyright {
132
122
  span {
123
+ color: $secondary;
133
124
  font-size: .75em;
134
- color: #84828F;
135
125
  }
136
126
  }
127
+
137
128
  .links {
138
129
  a {
139
- margin-right: 10px;
140
- &:hover {
141
- border-bottom: none;
142
- }
130
+ margin: 0 10px 0 0;
131
+ }
132
+
133
+ a:last-child {
134
+ margin: 0;
135
+ }
136
+
137
+ a:hover {
138
+ border-bottom: 0;
143
139
  }
144
140
  }
145
141
  }
@@ -147,6 +143,21 @@ footer {
147
143
  .post-list {
148
144
  li {
149
145
  margin: 0 0 12px;
146
+
147
+ h2 {
148
+ display: inline-block;
149
+ font-size: 22px;
150
+ font-weight: 400;
151
+ line-height: 30px;
152
+ margin: 0;
153
+ }
154
+
155
+ span {
156
+ color: $secondary;
157
+ float: right;
158
+ font-size: .75em;
159
+ text-align: right;
160
+ }
150
161
  }
151
162
 
152
163
  li:last-child {
@@ -158,8 +169,8 @@ footer {
158
169
  margin: 0 0 20px;
159
170
 
160
171
  .post-meta {
161
- margin: 0;
162
172
  color: $secondary;
173
+ margin: 0;
163
174
  }
164
175
 
165
176
  .post-title {
@@ -174,11 +185,11 @@ footer {
174
185
  }
175
186
 
176
187
  p {
177
- margin: 0 0 12px;
178
188
  font-size: 16px;
189
+ margin: 0 0 12px;
179
190
  }
180
191
 
181
192
  p:last-child {
182
- margin: 0;
193
+ margin: 0 0 24px;
183
194
  }
184
195
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yefeme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yefim Vedernikoff