jekyll-theme-centos 2.39.0 → 2.41.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a4af51306e3de43f1c7964de391dec246461f2e05dda95f22128f3ca3073d5f
4
- data.tar.gz: e0a342b33fe69f3279fa3bd10b4c89b0d8ec9991b30dd3f03477eda30fa92a06
3
+ metadata.gz: 3d407c09109ea76755371b4d54b3a0c128b377339ec2727f250654343a09d321
4
+ data.tar.gz: 114433d15638e149ee03723aec4c3e569f4274688794482edf2e0928f425a767
5
5
  SHA512:
6
- metadata.gz: cff491a2970c53c9106892242cc39209ad54727d83161a0c0d448bb9831b9d613159e038962587b650d9b48381b94aba40a678e7f145718f8890b5eb1bb49de6
7
- data.tar.gz: ed34d950d95c92da7642b6f1347bb6469ca3de4158b06f09740ad5166d899af1a422bd7a1c36606754596364deb7fdf8791503aa64eba2020bf658edf5758527
6
+ metadata.gz: 51684d119edcc4ca5ee21aef31c8e67dbd33cc60e20ef7a7a065172a94411522c62793b96e0b179d6dae6305b53d8d4ad4e8e914a80dcae48b61eec51c0278db
7
+ data.tar.gz: f33f2a7aa212121daa86930c930f4999424c3a99ab18a43e042313a9f34c88bd0d8d6298845d7bafe74c8d5f58f24ed6eca1434928b6639d723d7187afd9e1c3
@@ -1,19 +1,20 @@
1
1
  {% assign carousel = site.data.sponsors.carousel %}
2
+ <div id="{{ include.id | default: 'sponsorsCarousel' }}" class="row pt-3 text-body-emphasis">
2
3
 
3
- <div id="{{ include.id | default: 'sponsorsCarousel' }}" class="row py-5 bg-light text-body-emphasis">
4
-
5
- <div class="col-sm-12 col-xl-7">
4
+ <div class="col-sm-12 col-xl-7 mb-3">
5
+ {% if include.with_title != false %}
6
6
  <div class="h4"><i class="{{ carousel.icon }}"></i> {{ carousel.title }}</div>
7
- <p class="lead">{{ carousel.message }}</p>
7
+ {% endif %}
8
+ <div>{{ carousel.message }}</div>
8
9
  </div>
9
10
 
10
- <div class="col-sm-12 col-xl-5">
11
+ <div class="col-sm-12 col-xl-5 mb-3">
11
12
  <div class="carousel slide carousel-fade" data-bs-ride="carousel">
12
13
  <div class="carousel-inner">
13
14
  {% for member in carousel.members %}
14
15
  {% if member.is_active != false %}
15
16
  <div class="carousel-item{% if forloop.first %} active{% endif %}">
16
- <div class="card p-3 text-center">
17
+ <div class="card p-3 text-center border-0">
17
18
  <a href="{{ member.url }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/sponsors/{{ member.image }}" class="card-img-top" style="height: 60px; width: auto;" alt="{{ member.name }}"></a>
18
19
  </div>
19
20
  </div>
@@ -12,6 +12,33 @@
12
12
  background-position: center;
13
13
  }
14
14
 
15
+ // --------------------------------------------------------------------------------
16
+ // Backgrounds Gradients
17
+ // --------------------------------------------------------------------------------
18
+ .bg-gradient-primary {
19
+ background: rgb(227, 202, 220);
20
+ background: linear-gradient(90deg, rgba(227, 202, 220, 1) 0%, rgba(250, 228, 189, 1) 100%);
21
+ }
22
+ .bg-gradient-secondary {
23
+ background: rgb(227, 202, 220);
24
+ background: linear-gradient(270deg, rgba(227, 202, 220, 1) 0%, rgba(250, 228, 189, 1) 100%);
25
+ }
26
+
27
+ // --------------------------------------------------------------------------------
28
+ // Text Gradients
29
+ // --------------------------------------------------------------------------------
30
+ .text-gradient-primary,
31
+ .text-gradient-secondary {
32
+ color: transparent;
33
+ background-clip: text;
34
+ }
35
+ .text-gradient-primary {
36
+ background-image: linear-gradient(90deg, #{$primary} 0%, #{$secondary} 100%);
37
+ }
38
+ .text-gradient-secondary {
39
+ background-image: linear-gradient(270deg, #{$primary} 0%, #{$secondary} 100%);
40
+ }
41
+
15
42
  nav {
16
43
  // --------------------------------------------------------------------------------
17
44
  // Nav
Binary file
Binary file
Binary file
Binary file
Binary file