frontview 2.2.3.pre.beta → 2.2.4.pre.beta
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/frontview-2.2.3.pre.beta.gem +0 -0
- data/lib/frontview/contents/style_content.rb +13 -1
- data/lib/frontview/version.rb +1 -1
- 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: 46736be2a6c5c33de8d199d7804fa648d7eeba9706102fd651ec6d699102f5f4
|
|
4
|
+
data.tar.gz: b0506b7eda097db768289826beb1d59066b4d77e81b0aeb60b2047d71e7453b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6715fa90bf73ba1cbd388754c6fd2ae90627d1328895f19a911a817a4e89011507a80c1ca60dcfdb2504d2ee762d4f4db419594185a49558800db35208017830
|
|
7
|
+
data.tar.gz: f3ae82c4671291e143c3e837f4ede956ab75eaf4a5b32471703728b0a829c669ae1ce586f2ab8281b1d31f7e1b42dffd5becd2563457c4d6a54661cbdab9483f
|
|
Binary file
|
|
@@ -2,6 +2,11 @@ module Frontview
|
|
|
2
2
|
module Contents
|
|
3
3
|
class StyleContent < Rails::Generators::Base
|
|
4
4
|
def write_in_style
|
|
5
|
+
|
|
6
|
+
Dir.mkdir("app/assets/stylesheets/css") unless
|
|
7
|
+
File.exists?("app/assets/stylesheets/css")
|
|
8
|
+
file = File.new("app/assets/stylesheets/css/style.css", "w+")
|
|
9
|
+
|
|
5
10
|
File.open("app/assets/stylesheets/css/style.css", "w+") {
|
|
6
11
|
|file| file.puts(
|
|
7
12
|
'.main_h {
|
|
@@ -184,7 +189,14 @@ p {
|
|
|
184
189
|
line-height: 2;
|
|
185
190
|
}
|
|
186
191
|
|
|
192
|
+
.content {
|
|
193
|
+
padding: 50px 2% 40px;
|
|
194
|
+
border-bottom: dotted 1px #212f3d;
|
|
195
|
+
}
|
|
187
196
|
|
|
197
|
+
.bottom-content {
|
|
198
|
+
padding: 50px 2% 40px;
|
|
199
|
+
}
|
|
188
200
|
|
|
189
201
|
.hero {
|
|
190
202
|
position: relative;
|
|
@@ -374,7 +386,7 @@ footer {
|
|
|
374
386
|
top: 50%;
|
|
375
387
|
left: 10px;
|
|
376
388
|
border-top: 1px solid #ccc;
|
|
377
|
-
|
|
389
|
+
width: calc(100% - 20px);
|
|
378
390
|
}
|
|
379
391
|
.footer-social-overlap {
|
|
380
392
|
position: relative;
|
data/lib/frontview/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: frontview
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.4.pre.beta
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- elibiz443
|
|
@@ -125,6 +125,7 @@ files:
|
|
|
125
125
|
- assets/sample5.png
|
|
126
126
|
- bin/console
|
|
127
127
|
- bin/setup
|
|
128
|
+
- frontview-2.2.3.pre.beta.gem
|
|
128
129
|
- frontview.gemspec
|
|
129
130
|
- lib/frontview.rb
|
|
130
131
|
- lib/frontview/contents/alerts_content.rb
|