vp-themes 0.2.19 → 0.2.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -6
- data/lib/themes/velogica.yml +130 -0
- data/lib/vp/themes/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 694523dde8950d7a71abe4873c58715f79838d279eaa52212332948cbf838d48
|
4
|
+
data.tar.gz: 34c4f49eda2f61885fbb6d047ed610a7516187033d1442783ae8b519fe1cbbd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e72d4820f370da9d57ebb6c483ebdb20517b52d049424a56726b699a06516c726980882f9367696ed28766c86d712027f0b1d4eefd44d1907d511652f9fff33
|
7
|
+
data.tar.gz: 1c5bda050544773019550c318624bd3e71da1ae38c56a2ee355431bb7f3d0842514764cad1078210241d9e96f4eb51c869f9614931e699347c47a3cd4a397d45
|
data/README.md
CHANGED
@@ -18,7 +18,7 @@ if this gem is installed the pears provide vp-theme should be available for you.
|
|
18
18
|
|
19
19
|
```
|
20
20
|
Pears.subject(:theme) do |provider|
|
21
|
-
provider.vp_theme '
|
21
|
+
provider.vp_theme 'velogica'
|
22
22
|
end
|
23
23
|
```
|
24
24
|
|
@@ -26,17 +26,22 @@ Check ./lib/themes of this repository for a full list of available themes.
|
|
26
26
|
|
27
27
|
## Development
|
28
28
|
|
29
|
-
As the code is pretty simple I'll just ask you to keep it simple.
|
29
|
+
As the code is pretty simple I'll just ask you to keep it simple. The themes in this gem are (or will eventually) be
|
30
|
+
used across multiple environments. Keep this in mind when making changes.
|
30
31
|
|
31
32
|
## Contributing
|
32
33
|
|
33
34
|
Let's try to keep the branch alive for all versions of the gem.
|
34
35
|
|
35
|
-
Building a new version
|
36
|
+
### Building a new version
|
36
37
|
|
37
|
-
|
38
|
-
|
39
|
-
|
38
|
+
Use the following steps to build a new version of the gem:
|
39
|
+
|
40
|
+
1. Update the version number in lib/vp/themes/version.rb
|
41
|
+
2. Command: gem build vp-themes.gemspec
|
42
|
+
3. Command: gem push vp-themes-0.1.4.gem (specify the version here)
|
43
|
+
4. Login / authenticate with rubygems account
|
44
|
+
5. Push the changes in a branch named version/0.1.4 (specify the version here)
|
40
45
|
|
41
46
|
## License
|
42
47
|
|
@@ -0,0 +1,130 @@
|
|
1
|
+
assets:
|
2
|
+
scope: velogica
|
3
|
+
color: rgba(19, 62, 94, 1)
|
4
|
+
|
5
|
+
animation:
|
6
|
+
smooth-ease: cubic-bezier(0.7, 0, 0.3, 1)
|
7
|
+
|
8
|
+
color:
|
9
|
+
transparent: 255, 255, 255
|
10
|
+
dark: 33, 33, 33
|
11
|
+
light: 255, 255, 255
|
12
|
+
assertive-500: 243, 70, 41
|
13
|
+
balanced-500: 19, 62, 94
|
14
|
+
energized-500: 255, 126, 0
|
15
|
+
positive-500: 24, 166, 180
|
16
|
+
royal-500: 24, 166, 180
|
17
|
+
brave-500: 19, 62, 94
|
18
|
+
stable-100: 251, 252, 253
|
19
|
+
stable-300: 241, 242, 244
|
20
|
+
stable-500: 230, 234, 236
|
21
|
+
stable-700: 216, 221, 226
|
22
|
+
stable-900: 106, 120, 131
|
23
|
+
|
24
|
+
font:
|
25
|
+
stack: Roboto
|
26
|
+
stack-alt: Montserrat
|
27
|
+
stack-handwriting: cursive
|
28
|
+
size-xxxl: 42px
|
29
|
+
size-xxl: 27px
|
30
|
+
size-xl: 22px
|
31
|
+
size-l: 20px
|
32
|
+
size-m: 18px
|
33
|
+
size-s: 16px
|
34
|
+
size-xs: 15px
|
35
|
+
size-xxs: 14px
|
36
|
+
size-xxxs: 12px
|
37
|
+
|
38
|
+
radius:
|
39
|
+
xs: 3px
|
40
|
+
s: 5px
|
41
|
+
m: 10px
|
42
|
+
l: 60px
|
43
|
+
xl: 75px
|
44
|
+
|
45
|
+
spacing:
|
46
|
+
xxxs: 2px
|
47
|
+
xxs: 5px
|
48
|
+
xs: 10px
|
49
|
+
s: 12px
|
50
|
+
m: 15px
|
51
|
+
l: 20px
|
52
|
+
xl: 30px
|
53
|
+
xxl: 40px
|
54
|
+
xxxl: 50px
|
55
|
+
|
56
|
+
shadow:
|
57
|
+
s: 0px 1px 0px rgba(0, 0, 0, 0.05)
|
58
|
+
m: 0px 1px 3px rgba(0, 0, 0, 0.05)
|
59
|
+
l: 0px 3px 6px rgba(0, 0, 0, 0.05)
|
60
|
+
|
61
|
+
grid:
|
62
|
+
max-width: 1140px
|
63
|
+
|
64
|
+
image:
|
65
|
+
text-width: 490px
|
66
|
+
border-radius: var(--radius-m)
|
67
|
+
|
68
|
+
button:
|
69
|
+
title-font-weight: 500
|
70
|
+
|
71
|
+
steps:
|
72
|
+
link-font-family: var(--font-stack)
|
73
|
+
link-border: 2px solid rgba(var(--color-stable-700), 1)
|
74
|
+
padding: var(--spacing-m) 0
|
75
|
+
link-active-color: rgba(var(--color-balanced-500), 1)
|
76
|
+
link-active-title-color: rgba(var(--color-balanced-500), 1)
|
77
|
+
link-active-border-color: rgba(var(--color-balanced-500), 1)
|
78
|
+
|
79
|
+
content:
|
80
|
+
intro-font-weight: 400
|
81
|
+
button-font-weight: 500
|
82
|
+
|
83
|
+
heading:
|
84
|
+
h6-font-weight-medium: 600
|
85
|
+
color: rgba(19, 62, 94, 1)
|
86
|
+
|
87
|
+
list:
|
88
|
+
color-marker: rgba(var(--color-royal-500), 1)
|
89
|
+
|
90
|
+
table:
|
91
|
+
tr-even-background-color: rgba(var(--color-light), 1)
|
92
|
+
td-padding-medium: var(--spacing-s) var(--spacing-s) var(--spacing-s) var(--spacing-xl)
|
93
|
+
border-th-padding-medium: var(--spacing-s) var(--spacing-xl)
|
94
|
+
|
95
|
+
textarea:
|
96
|
+
border-right: 1px solid rgba(var(--color-stable-500), 1)
|
97
|
+
border-bottom: 1px solid rgba(var(--color-stable-500), 1)
|
98
|
+
border-left: 1px solid rgba(var(--color-stable-500), 1)
|
99
|
+
border-top: 1px solid rgba(var(--color-stable-500), 1)
|
100
|
+
|
101
|
+
option:
|
102
|
+
background-color: rgba(var(--color-light),1)
|
103
|
+
|
104
|
+
content-strong:
|
105
|
+
font-weight: 500
|
106
|
+
|
107
|
+
message:
|
108
|
+
background: currentColor
|
109
|
+
|
110
|
+
download:
|
111
|
+
padding: var(--spacing-m) var(--spacing-l)
|
112
|
+
|
113
|
+
header:
|
114
|
+
sidelogo-display: flex
|
115
|
+
|
116
|
+
pdf:
|
117
|
+
footer-divider: rgba(var(--color-assertive-500), 1)
|
118
|
+
title-color: rgba(var(--color-assertive-500), 1)
|
119
|
+
|
120
|
+
vp-widget:
|
121
|
+
questionnaire-primary-button-radius: 10px
|
122
|
+
button-m-padding: var(--spacing-xs) var(--spacing-l)
|
123
|
+
|
124
|
+
email:
|
125
|
+
button-background-color: rgba(19, 62, 94, 1)
|
126
|
+
button-border-color: rgba(19, 62, 94, 1)
|
127
|
+
button-text-color: rgba(255, 255, 255, 1)
|
128
|
+
|
129
|
+
footer:
|
130
|
+
background-color: rgba(106, 120, 131, 1)
|
data/lib/vp/themes/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vp-themes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Niels Evers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pears
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
version: 0.2.0
|
27
27
|
description:
|
28
28
|
email:
|
29
|
-
-
|
29
|
+
- niels.evers@remarkgroup.com
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
@@ -45,6 +45,7 @@ files:
|
|
45
45
|
- lib/themes/lmdp.yml
|
46
46
|
- lib/themes/malakoff.yml
|
47
47
|
- lib/themes/matmut.yml
|
48
|
+
- lib/themes/velogica.yml
|
48
49
|
- lib/vp/pears/vp_theme.rb
|
49
50
|
- lib/vp/themes.rb
|
50
51
|
- lib/vp/themes/version.rb
|
@@ -54,6 +55,7 @@ licenses:
|
|
54
55
|
- MIT
|
55
56
|
metadata:
|
56
57
|
homepage_uri: https://remarkgroup.com
|
58
|
+
rubygems_mfa_required: 'true'
|
57
59
|
post_install_message:
|
58
60
|
rdoc_options: []
|
59
61
|
require_paths:
|
@@ -69,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
71
|
- !ruby/object:Gem::Version
|
70
72
|
version: '0'
|
71
73
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
74
|
+
rubygems_version: 3.5.15
|
73
75
|
signing_key:
|
74
76
|
specification_version: 4
|
75
77
|
summary: Bundle themes for the VP project
|