dta_rapid 0.2.14 → 0.2.15
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/_includes/typography/badge.html +1 -0
- data/_includes/typography/callout.html +1 -0
- data/_layouts/default.html +4 -1
- data/_sass/_colors.scss +4 -0
- data/_sass/components/_badge.scss +11 -0
- data/_sass/components/_callout.scss +14 -0
- data/assets/style.scss +2 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47c2ef62687d83563b2980404ad48ec51d8fbe7c
|
4
|
+
data.tar.gz: f09d8e116f22b8fb6084a3c4e72fa885be23ad77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0203b868e4a33ea65c421a28d2d6e0067a60bc5845d849dc33141c998bda87c3daf4b98fa991e5648b01e4383e9331cc5e7106d0957bf75f6557847a8aca8c66
|
7
|
+
data.tar.gz: 7c9e5b165be3d437b8bb81acfb00cc3ecf1eb75ac3c9ba3446c1e1dcb7fa92993e2df185de3eede1b66ce2b465847263a48b6d0b2a82f39c760fbc2dbc5673f2
|
@@ -0,0 +1 @@
|
|
1
|
+
<span class="badge__root">{{ include.text }}</span>
|
@@ -0,0 +1 @@
|
|
1
|
+
<p class="callout__root">{{ include.text }}</p>
|
data/_layouts/default.html
CHANGED
@@ -9,8 +9,11 @@
|
|
9
9
|
</head>
|
10
10
|
|
11
11
|
<body>
|
12
|
+
<header>
|
13
|
+
<p class="callout__root">This is a prototype. Please don't fill it in with your real information.</p>
|
14
|
+
</header>
|
12
15
|
<main>
|
13
|
-
|
16
|
+
<div class="wrapper">{{ content }}</div>
|
14
17
|
</main>
|
15
18
|
</body>
|
16
19
|
|
data/_sass/_colors.scss
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
.badge__root {
|
2
|
+
display: inline-block;
|
3
|
+
background-color: $badge-prototype-color;
|
4
|
+
border-radius: $large-border-radius;
|
5
|
+
padding: $tiny-spacing $small-spacing;
|
6
|
+
line-height: 1;
|
7
|
+
letter-spacing: 1px;
|
8
|
+
color: lighten($badge-prototype-color, 75%);
|
9
|
+
font-size: 0.875rem;
|
10
|
+
}
|
11
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
.callout__root {
|
2
|
+
margin: $base-spacing $small-spacing;
|
3
|
+
padding: $medium-spacing $medium-spacing $medium-spacing $base-spacing;
|
4
|
+
border-radius: $tiny-border-radius;
|
5
|
+
box-shadow: 0 0 8px $light-grey;
|
6
|
+
padding-left: $base-spacing - $tiny-spacing;
|
7
|
+
border-left-width: $tiny-spacing;
|
8
|
+
border-left-style: solid;
|
9
|
+
border-left-color: $dark-grey;
|
10
|
+
}
|
11
|
+
|
12
|
+
.callout__root--info {
|
13
|
+
border-left-color: $info-color;
|
14
|
+
}
|
data/assets/style.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dta_rapid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gareth Rogers
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2017-02-
|
13
|
+
date: 2017-02-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: jekyll
|
@@ -70,6 +70,8 @@ files:
|
|
70
70
|
- _includes/forms/radio-field.html
|
71
71
|
- _includes/forms/text-field.html
|
72
72
|
- _includes/link-button.html
|
73
|
+
- _includes/typography/badge.html
|
74
|
+
- _includes/typography/callout.html
|
73
75
|
- _layouts/default.html
|
74
76
|
- _sass/_colors.scss
|
75
77
|
- _sass/_easings.scss
|
@@ -80,7 +82,9 @@ files:
|
|
80
82
|
- _sass/_print.scss
|
81
83
|
- _sass/_typography.scss
|
82
84
|
- _sass/_variables.scss
|
85
|
+
- _sass/components/_badge.scss
|
83
86
|
- _sass/components/_button.scss
|
87
|
+
- _sass/components/_callout.scss
|
84
88
|
- _sass/components/_text-field.scss
|
85
89
|
- _sass/mixins/_clearfix.scss
|
86
90
|
- _sass/mixins/_ellipsis.scss
|