word-games-theme 2.3.7 → 2.3.8

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: dcf060fac85f58755430cc52931fa52b53c3f058aaf2994039725d5f211aad92
4
- data.tar.gz: bef977941b446a0c6218cf5cc6caa46e76c4e704f4e19a8d399ec967f666ae16
3
+ metadata.gz: 2cf9e0218613475186399ece0923215afb1c417434860a11a261067bfc19146e
4
+ data.tar.gz: de9269a72e6adc414d0a066f505eaf28c32c065a4ae1aaf3db729a31698f0ddc
5
5
  SHA512:
6
- metadata.gz: 18f9ea64c5de25fd3d16795ff17b3d65624cb21335fcab39577573ad50a557a4f36f4233f3568d05cc920dd8b70ea5abf73629fcff90437ffa8b5340f5f5f06b
7
- data.tar.gz: 664560f608d77a712db18dbd8826b8a6a7794bdde604ac0d2771eae63a85296f7a911a5974665517978a4deeac88fa54df32ef65188ef39fa9989cb4813bd3e0
6
+ metadata.gz: 7ddf8b0c5487e95975fe1a78b0cde8d97b26d8e040f551614dfaf37d6dc2b199bda7e259ee8793afe499d8302b988f1034a891d23f9c95ec0533fab3b5e6d183
7
+ data.tar.gz: bfd61cb8c2cfaa48f451553b6c4e2661c0d8c301d6c8841f469f8503927feaa2c3bd6fcc3557742b32708563530ca18c5f17f3845ea15b98903f86597848cd5d
@@ -56,11 +56,9 @@
56
56
  }
57
57
  ],
58
58
  "jsfilepaths": [
59
- "/assets/js/wordleSolver.js",
60
- "https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.12/cropper.min.js"
59
+ "/assets/js/wordleSolver.js"
61
60
  ],
62
61
  "cssfilepaths": [
63
- "/assets/css/wordle-solver.css",
64
- "https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.12/cropper.min.css"
62
+ "/assets/css/wordle-solver.css"
65
63
  ]
66
64
  }
@@ -25,7 +25,7 @@
25
25
  class="card-img-top" alt="{{post.image}}">
26
26
  </a>
27
27
  <a href="{{ post.url }}" class="anchor_link p-3">
28
- <h4 class="card-title mb-4">{{ post.title }}</h4>
28
+ <h3 class="card-title mb-4">{{ post.title }}</h3>
29
29
  </a>
30
30
  <!-- / <p class="card-subtitle mb-3">{{ post.date | date_to_string }}</p> -->
31
31
  {%- include authors/authors.html -%}
@@ -10,7 +10,7 @@
10
10
  <div class="col-md-10 mx-auto">
11
11
  <div class="d-flex align-items-center justify-content-start footer-prducts-div-heading py-4">
12
12
 
13
- <h6 class="text-center wordgames-h3 text-white my-4" style="font-size: 30px">Products</h6>
13
+ <h4 class="text-center wordgames-h3 text-white my-4" style="font-size: 30px">Products</h4>
14
14
  <hr class="flex-grow-1 mx-4 mb-0 footer-product-line"
15
15
  style="height: 1px; background-color: var(--primary-color);width: 644px; max-width: 644px;">
16
16
  </div>
@@ -29,20 +29,9 @@
29
29
  {% endif %}
30
30
  {% endfor %}
31
31
  {% endif %}
32
- <!-- {%- if site.ezoicAds -%}
33
- <iframe loading="lazy" class="youtubeVideoPlayer mb-5" width="400" height="315"
34
- src="https://www.youtube.com/embed/{{video_id}}?autoplay=0&mute=1" allowfullscreen
35
- loading="lazy">
36
- </iframe>
37
- {%- else -%}
38
- <iframe loading="lazy" class="youtubeVideoPlayer mb-5" width="500" height="315"
39
- src="https://www.youtube.com/embed/{{video_id}}?autoplay=0&mute=1" allowfullscreen
40
- loading="lazy">
41
- </iframe>
42
- {%- endif -%} -->
43
-
32
+
44
33
  <div class="how-to-video" data-videoid="{{video_id}}">
45
- <img class="youtubeVideoPlayer mb-5" width="500px" height="315px" id="thumbnail-img" alt="thumbnail-img" />
34
+ <img class="youtubeVideoPlayer mb-5" width="100%" height="100%" id="thumbnail-img" alt="thumbnail-img" />
46
35
  <div class="youtube-play-btn-wrapper">
47
36
  <button class="play-btn btn btn-primary" onClick="loadVideo()">►</button>
48
37
  </div>
@@ -85,15 +74,17 @@
85
74
  </section>
86
75
  {%- endif -%}
87
76
 
77
+
78
+ {%- if dataToShow.HOW_TO_CONTENT.YoutubeVideoUrl.size > 0 -%}
88
79
  <script>
89
80
  let videoContainer = document.querySelector('.how-to-video');
81
+ let videoId = videoContainer.getAttribute("data-videoid")
90
82
  let thumbnail = document.getElementById('thumbnail-img');
91
- let videoId =videoContainer.getAttribute("data-videoid")
92
83
  let thumbnailUrl = 'https://img.youtube.com/vi/' + videoId + '/maxresdefault.jpg';
93
84
 
94
85
  // Function to load video
95
86
  function loadVideo() {
96
- videoContainer.innerHTML = '<iframe loading="lazy" class="youtubeVideoPlayer mb-5" width="500" height="315" src="https://www.youtube.com/embed/' + videoId + '?autoplay=1&mute=1" allowfullscreen></iframe>';
87
+ videoContainer.innerHTML = '<iframe loading="lazy" class="youtubeVideoPlayer mb-5" width="100%" height="315" src="https://www.youtube.com/embed/' + videoId + '?autoplay=1&mute=1" allowfullscreen></iframe>';
97
88
  }
98
89
  // Function to handle lazy loading of the thumbnail
99
90
  function lazyLoadThumbnail(entries, observer) {
@@ -111,4 +102,5 @@
111
102
  observer.observe(thumbnail);
112
103
  // Optionally, you can add an event listener to trigger video loading on click or other interactions
113
104
  thumbnail.addEventListener('click', loadVideo);
114
- </script>
105
+ </script>
106
+ {%- endif -%}
@@ -8,8 +8,6 @@
8
8
  <img id="rating-img" loading='lazy' src="/assets/images/rating.webp" alt="rating-img">
9
9
  <div class="rating-text">Rate this tool</div>
10
10
  <div class="rating-stars">
11
-
12
-
13
11
  <svg class="rating-star" width="56" height="53" viewBox="0 0 56 53" fill="gray"
14
12
  xmlns="http://www.w3.org/2000/svg">
15
13
  <path
@@ -28,8 +28,8 @@
28
28
  </a> -->
29
29
  <div class="card-body">
30
30
  <a href="{{ post.url }}" class="anchor_link">
31
- <h4 class="card-title mb-4">{{ post.title }}
32
- </h4>
31
+ <h3 class="card-title mb-4">{{ post.title }}
32
+ </h3>
33
33
  <p class="post-desc"> {{post.description}}</p>
34
34
  </a>
35
35
  </div>
@@ -70,8 +70,8 @@
70
70
  </a> -->
71
71
  <div class="card-body">
72
72
  <a href="{{ post.url }}" class="anchor_link">
73
- <h4 class="card-title mb-4">{{ post.title }}
74
- </h4>
73
+ <h3 class="card-title mb-4">{{ post.title }}
74
+ </h3>
75
75
  <p class="post-desc"> {{post.description}}</p>
76
76
  </a>
77
77
  </div>
@@ -80,8 +80,8 @@
80
80
  </a> -->
81
81
  <div class="card-body">
82
82
  <a href="{{ post.url }}" class="anchor_link">
83
- <h4 class="card-title mb-4">{{ post.title }}
84
- </h4>
83
+ <h3 class="card-title mb-4">{{ post.title }}
84
+ </h3>
85
85
  <p class="post-desc"> {{post.description}}</p>
86
86
  </a>
87
87
  </div>
@@ -161,8 +161,8 @@
161
161
  </a> -->
162
162
  <div class="card-body">
163
163
  <a href="{{ post.url }}" class="anchor_link">
164
- <h4 class="card-title mb-4">{{ post.title }}
165
- </h4>
164
+ <h3 class="card-title mb-4">{{ post.title }}
165
+ </h3>
166
166
  <p class="post-desc"> {{post.description}}</p>
167
167
  </a>
168
168
  </div>
@@ -26,7 +26,7 @@
26
26
  </div>
27
27
  </div>
28
28
  <input style="background-color: {{CustomColor.inputButtonBg}};" type="submit" class="serachBtn"
29
- id="serach" value="">
29
+ id="serach">
30
30
  <div class="dictonaryDropdown">
31
31
  <select class="form-select select_dropDown2" name="dictionary" aria-label="Default select example">
32
32
  <option value="Dictionary">Dictionary</option>
data/_layouts/blog.html CHANGED
@@ -53,7 +53,7 @@
53
53
  </a>
54
54
  <div class="card-body">
55
55
  <a href="{{ post.url }}" class="anchor_link">
56
- <h4 class="card-title mb-4">{{ post.title }}</h4>
56
+ <h3 class="card-title mb-4">{{ post.title }}</h3>
57
57
  </a>
58
58
  </div>
59
59
  {%- include authors/authors.html -%}
@@ -51,8 +51,8 @@
51
51
  </a> -->
52
52
  <div class="card-body">
53
53
  <a href="{{ post.url }}" class="anchor_link">
54
- <h4 class="card-title mb-4">{{ post.title }}
55
- </h4>
54
+ <h3 class="card-title mb-4">{{ post.title }}
55
+ </h3>
56
56
  <p class="post-desc"> {{post.description}}</p>
57
57
  </a>
58
58
  </div>
@@ -11,6 +11,7 @@
11
11
  {%- endif -%}
12
12
 
13
13
  <div class="main-header">
14
+ <!-- <img id="header-img" src="/assets/images/background.svg" alt="background.svg"> -->
14
15
  {% include wordgames/headings/headings.html %}
15
16
  {% include wordgames/search-box/search-box.html %}
16
17
  </div>
@@ -2,8 +2,16 @@
2
2
  <html lang="en">
3
3
 
4
4
  {%- include wordgames/head/head.html -%}
5
-
5
+ <style>
6
+ .wordgametheme-sidebar-left,.wordgametheme-sidebar-right{
7
+ z-index: 9999999;
8
+ }
9
+ </style>
6
10
  <body>
11
+ {%- if site.newFeatureBox -%}
12
+ <div class="wordgametheme-sidebar-left"></div>
13
+ <div class="wordgametheme-sidebar-right"></div>
14
+ {%- endif -%}
7
15
 
8
16
  {%- include wordgames/result-page/result-page.html -%}
9
17
 
@@ -37,6 +37,11 @@ input[type="number"] {
37
37
  }
38
38
 
39
39
 
40
+ #header-img{
41
+ position: absolute;
42
+ width: 100%;
43
+ top:0px;
44
+ }
40
45
  /* headings css */
41
46
  .main-header {
42
47
  background: url(/assets/images/background.svg) no-repeat;
@@ -120,6 +125,7 @@ input[type="number"] {
120
125
  }
121
126
 
122
127
  .serachSection .serachBox .serachBtn {
128
+ color: var(--primary-color);
123
129
  background-color: var(--primary-color) !important;
124
130
  background: url(/assets/images/search.svg) no-repeat center center;
125
131
  background-size: 35px 35px;
@@ -761,7 +767,9 @@ summary::-webkit-details-marker {
761
767
  .overlay {
762
768
  display: none;
763
769
  }
764
-
770
+ #header-img{
771
+ display: none;
772
+ }
765
773
  .txt-box-container {
766
774
  padding: 0 1rem;
767
775
  }
@@ -1,4 +1,3 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');
2
1
 
3
2
  * {
4
3
  margin: 0;
@@ -7,7 +7,7 @@
7
7
  --black-color: #191919;
8
8
  --white-color: #ffffff;
9
9
  --black-light: #777777;
10
- --font-family: 'Poppins', sans-serif;
10
+ --font-family: sans-serif;
11
11
  --text-color: #303030;
12
12
  --success-color: #3de968;
13
13
  --error-color: #e33e3e;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: word-games-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.7
4
+ version: 2.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-14 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll