jekyll-cessda-docs 0.1.9.pre.2434228f437aa2f078a66797f886e5a19d17476d → 0.1.10.pre.1ed94d588429435ee094e916854b74478a0f0f3c

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
  SHA256:
3
- metadata.gz: 7ae98493bc579eba5165ad20b336cdb924be90431faaf1e5b2227c3038d362d6
4
- data.tar.gz: d62636ccd65e0be56eafeaf491b660dbcc2b633a61fcd9d0bc28533546882262
3
+ metadata.gz: 803d44a505b6afc1b0b99c98c9c287682b713ad6e11b0250b2289e5d3d4f95e4
4
+ data.tar.gz: e0a6f2cf631e5b9c1d2e12ffb88965765ef33ba27a8bbc90416835cfffc019d1
5
5
  SHA512:
6
- metadata.gz: 30a01d3854de9e0f495549193bbc343dd1f9120aca67eeed5374d34b2fdcc9c1bf23ef60a1e090db58701d0b78fece6ee9d670b18eb123a2e7851cf3241b8994
7
- data.tar.gz: 17d638d1f174798cf6a37f4509fb6b5ea664172da3c2ec3d9ee199b61e15ba28c7de351732b57cf94ab0bd476065e53837c0022481ab6834d460d7cf3e14d8d8
6
+ metadata.gz: 9840fd373acf0974abd075a2852e696f4054519d9ab914e608a347200f3020c1d01cb9feda1513bbfa24dfcf74655ea3adffa0139eb6123820a391005aafaec2
7
+ data.tar.gz: d2f094e6422b7fcb4dfa667983440cdd1212007009eadc8ae960e28cdc6c2ab48b2d81dc05fff4bb51732d610dca113ef3cbb4c6b115ce078056df75102a9bc3
@@ -67,19 +67,19 @@
67
67
  }
68
68
  width: $nav-list-item-height-sm;
69
69
  height: $nav-list-item-height-sm;
70
- padding-top: #{$nav-list-item-height-sm / 4};
71
- padding-right: #{$nav-list-item-height-sm / 4};
72
- padding-bottom: #{$nav-list-item-height-sm / 4};
73
- padding-left: #{$nav-list-item-height-sm / 4};
70
+ padding-top: #{$nav-list-item-height-sm * 0.25};
71
+ padding-right: #{$nav-list-item-height-sm * 0.25};
72
+ padding-bottom: #{$nav-list-item-height-sm * 0.25};
73
+ padding-left: #{$nav-list-item-height-sm * 0.25};
74
74
  color: $link-color;
75
75
 
76
76
  @include mq(md) {
77
77
  width: $nav-list-item-height;
78
78
  height: $nav-list-item-height;
79
- padding-top: #{$nav-list-item-height / 4};
80
- padding-right: #{$nav-list-item-height / 4};
81
- padding-bottom: #{$nav-list-item-height / 4};
82
- padding-left: #{$nav-list-item-height / 4};
79
+ padding-top: #{$nav-list-item-height * 0.25};
80
+ padding-right: #{$nav-list-item-height * 0.25};
81
+ padding-bottom: #{$nav-list-item-height * 0.25};
82
+ padding-left: #{$nav-list-item-height * 0.25};
83
83
  }
84
84
 
85
85
  &:hover {
data/_sass/search.scss CHANGED
@@ -8,7 +8,7 @@
8
8
  flex-grow: 1;
9
9
  height: $sp-10;
10
10
  padding: $sp-2;
11
- transition: padding linear #{$transition-duration / 2};
11
+ transition: padding linear #{$transition-duration * 0.5};
12
12
 
13
13
  @include mq(md) {
14
14
  position: relative !important;
@@ -26,7 +26,7 @@
26
26
  overflow: hidden;
27
27
  border-radius: $border-radius;
28
28
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
29
- transition: height linear #{$transition-duration / 2};
29
+ transition: height linear #{$transition-duration * 0.5};
30
30
 
31
31
  @include mq(md) {
32
32
  position: absolute;
@@ -61,7 +61,7 @@
61
61
  padding-left: #{$gutter-spacing + $sp-5};
62
62
  font-size: 14px;
63
63
  background-color: $body-background-color;
64
- transition: padding-left linear #{$transition-duration / 2};
64
+ transition: padding-left linear #{$transition-duration * 0.5};
65
65
  }
66
66
 
67
67
  &:focus {
@@ -81,7 +81,7 @@
81
81
 
82
82
  @include mq(md) {
83
83
  padding-left: $gutter-spacing;
84
- transition: padding-left linear #{$transition-duration / 2};
84
+ transition: padding-left linear #{$transition-duration * 0.5};
85
85
  }
86
86
 
87
87
  .search-icon {
@@ -241,7 +241,7 @@
241
241
  height: $sp-9;
242
242
  background-color: $search-background-color;
243
243
  border: 1px solid rgba($link-color, 0.3);
244
- border-radius: #{$sp-9 / 2};
244
+ border-radius: #{$sp-9 * 0.5};
245
245
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
246
246
  align-items: center;
247
247
  justify-content: center;
@@ -1,5 +1,7 @@
1
+ @use "sass:math";
2
+
1
3
  @function rem($size, $unit: "") {
2
- $remSize: $size / $root-font-size;
4
+ $remSize: math.div($size, $root-font-size);
3
5
 
4
6
  @if ($unit == false) {
5
7
  @return #{$remSize};
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-cessda-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.pre.2434228f437aa2f078a66797f886e5a19d17476d
4
+ version: 0.1.10.pre.1ed94d588429435ee094e916854b74478a0f0f3c
5
5
  platform: ruby
6
6
  authors:
7
7
  - openconcept
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-30 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll