word-games-theme 0.6.2 → 0.6.6

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: cdd3b4ee8a3088c422e41a27789eafcf6b6fdd0d24f074cd3c319cf15801f8f3
4
- data.tar.gz: d2abc9db8b8277a38fb7062c6b102896b78e884261b9cd83e00d8854f4f8a420
3
+ metadata.gz: 13232ee305d69c65341f9374483271004c57887efb4ffe1447b88c48ec99db93
4
+ data.tar.gz: 0c437e9bd00a3e49ac7c4135f120ba42652b10c8dd48e299b903e35fdfddb355
5
5
  SHA512:
6
- metadata.gz: d9079837531c0276e3e596a60914dc04ebdab5ee5bf5a4832f788a7d20463ac615f3fafcdc54bb1c3e14d3880ef55961c008fc94b80d07af07cb35dd2217356c
7
- data.tar.gz: d50956ae05a5f8967b38fd216049aad0aec43efde11d2a5e40a071f104c3c108243e5a08b4948034369923f66bcd1158eb7aa0ba94c96773003d8389fd915d3d
6
+ metadata.gz: 1072621d71e289e092ef3f1eb076f4bcdd61ac329d8235164ea402fcc2933dda972edac2d98b250aefe108800f213c6d186f126221f80b72669b18058e5cf3a6
7
+ data.tar.gz: cd330401acc19f9b5fa6554038832d0e5c596bc2bd09eb7d2b8ebcde9d2dcb7aac853d225cc6a810037ea416ce72ebe74031777ace95e161d95746beb148511e
@@ -1,7 +1,7 @@
1
1
  {% if jekyll.environment == 'production' and site.MonumetricID %}
2
- <script type="text/javascript" defer src="{{site.MonumetricID}}" data-cfasync="false"></script>
2
+ <script type="text/javascript" defer delay="{{site.MonumetricID}}" data-cfasync="false"></script>
3
3
  {% endif %}
4
4
 
5
5
  {% if jekyll.environment == 'development' and site.MonumetricID %}
6
- <script type="text/javascript" defer src="{{site.MonumetricID}}" data-cfasync="false"></script>
6
+ <script type="text/javascript" delay="{{site.MonumetricID}}"></script>
7
7
  {% endif %}
@@ -22,13 +22,13 @@
22
22
  </style>
23
23
  <div class="container-fluid m-0 p-0">
24
24
  <div class="row mx-auto m-0 p-0">
25
- <div class="col-xl-3 col-lg-12">
25
+ <div class="col-lg-12">
26
26
  <div class="row">
27
- <div class="col-xl-3 p-0">
27
+ <div class="col-md-12 p-0 text-center">
28
28
  <div class="feature">
29
- <img src="/assets/images/left_obj_01.png" alt="">
30
- <span class="site-no">04</span>
31
- <h5 class="title" style="width: 300px;">High Scoring Words</h5>
29
+ <!-- <img src="/assets/images/left_obj_01.png" alt=""> -->
30
+ <!-- <span class="site-no">04</span> -->
31
+ <h5 class="title">High Scoring Words</h5>
32
32
  </div>
33
33
  </div>
34
34
  </div>
@@ -23,10 +23,37 @@
23
23
  <meta name="author" content="{{ site.author_name }}">
24
24
  <title>{{page.title}}</title>
25
25
  <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
26
- <link rel="stylesheet" href="../assets/css/bootstrap.min.css">
26
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" />
27
27
  <link rel="stylesheet" href="{{'/assets/css/blog.css' | relative_url }}">
28
28
 
29
29
  {%- include google-analytics.html -%}
30
- {% include adsense/adsense.html %}
30
+ <!-- {% include adsense/adsense.html %} -->
31
+ <script>
32
+ const autoLoadDuration = 5; //In Seconds
33
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
34
+
35
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
36
+
37
+ eventList.forEach(function (event) {
38
+ window.addEventListener(event, triggerScripts, { passive: true })
39
+ });
40
+
41
+ function triggerScripts() {
42
+ runScripts();
43
+ clearTimeout(autoLoadTimeout);
44
+ eventList.forEach(function (event) {
45
+ window.removeEventListener(event, triggerScripts, { passive: true });
46
+ });
47
+ }
48
+
49
+ function runScripts() {
50
+ // console.log(document.querySelector("script"))
51
+ // console.log("Javascript Executed!")
52
+ // console.log(document.querySelectorAll("script[delay]"))
53
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
54
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
55
+ });
56
+ }
57
+ </script>
31
58
  {% include Monumetric/Monumetric.html %}
32
59
  </head>
@@ -100,7 +100,32 @@
100
100
  {%- include Rating/structureddata.html -%}
101
101
  {%- endif -%}
102
102
 
103
- {% include adsense/adsense.html %}
104
103
  {%- include google-analytics.html -%}
105
104
 
105
+
106
+
107
+ <script>
108
+ const autoLoadDuration = 5; //In Seconds
109
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
110
+
111
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
112
+
113
+ eventList.forEach(function (event) {
114
+ window.addEventListener(event, triggerScripts, { passive: true })
115
+ });
116
+
117
+ function triggerScripts() {
118
+ runScripts();
119
+ clearTimeout(autoLoadTimeout);
120
+ eventList.forEach(function (event) {
121
+ window.removeEventListener(event, triggerScripts, { passive: true });
122
+ });
123
+ }
124
+
125
+ function runScripts() {
126
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
127
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
128
+ });
129
+ }
130
+ </script>
106
131
  </head>
@@ -15,7 +15,7 @@
15
15
  </button>
16
16
 
17
17
  <div class="collapse navbar-collapse" id="navbarSupportedContent">
18
- <ul class="navbar-nav ml-auto">
18
+ <ul class="navbar-nav">
19
19
  <li class="nav-item">
20
20
  <a class="nav-link" href="/blog">Blog</a>
21
21
  </li>
@@ -5,15 +5,15 @@
5
5
  <!-- staring about-seciton -->
6
6
  <div class="container-fluid">
7
7
  <div class="row rowHeight">
8
- <div class="col-md-12 p-0">
8
+ <!-- <div class="col-md-12 p-0"> -->
9
9
  <div class="about">
10
- <img src="/assets/images/right_obj_01.png" alt="">
10
+ <!-- <img src="/assets/images/right_obj_01.png" alt=""> -->
11
11
  <div class="content">
12
- <span class="site-no">{{dataToShow.aboutNo}}</span>
12
+ <!-- <span class="site-no">{{dataToShow.aboutNo}}</span> -->
13
13
  <h5 class="title">{{dataToShow.about_title}}</h5>
14
14
  </div>
15
15
  </div>
16
- </div>
16
+ <!-- </div> -->
17
17
  <!-- {% for entry in dataToShow.aboutList %}
18
18
  <div class="col-lg-4 pt-5">
19
19
  <div class="about_content" style="margin-top:100px;">
@@ -4,16 +4,16 @@
4
4
 
5
5
  <div class="container-fluid" id="blog">
6
6
  <div class="row rowHeight3">
7
- <div class="col-md-12 p-0">
7
+ <!-- <div class="col-md-12 p-0"> -->
8
8
  <div class="blog">
9
- <img src="/assets/images/right_obj_01.png" alt="">
10
- <div class="content">
11
- <span class="site-no">05</span>
9
+ <!-- <img src="/assets/images/right_obj_01.png" alt=""> -->
10
+ <!-- <div class="content"> -->
11
+ <!-- <span class="site-no">05</span> -->
12
12
  <h5 class="title">{{dataToShow.blog_title}}</h5>
13
- </div>
13
+ <!-- </div> -->
14
14
  </div>
15
- </div>
16
- <div class="col-xl-8 col-lg-12 blog_section" style="padding-left: 120px; margin-top:50px">
15
+ <!-- </div> -->
16
+ <div class="blog_section container" style="padding-left: 120px; margin-top:50px"> <!--earlier class=col-xl-8 col-lg-12-->
17
17
  <section class="section_post">
18
18
  <div class="row">
19
19
  {% for post in site.posts limit: 2 %}
@@ -3,20 +3,20 @@
3
3
  {% assign dataToShow = site.data.[page.folderName][lang][file] %}
4
4
  <div class="container-fluid">
5
5
  <div class="row">
6
- <div class="col-xl-3 col-lg-12">
6
+ <!--<div class="col-xl-3 col-lg-12">
7
7
  <div class="row">
8
- <div class="col-xl-3 p-0">
8
+ <div class="col-xl-3 p-0">-->
9
9
  <div class="feature">
10
- <img src="/assets/images/left_obj_01.png" alt="">
11
- <span class="site-no"> 02</span>
10
+ <!--<img src="/assets/images/left_obj_01.png" alt="">
11
+ <span class="site-no"> 02</span>-->
12
12
  <h5 class="title">{{dataToShow.feature_title}}</h5>
13
13
  <p class="description">{{dataToShow.feature_description}}</p>
14
14
  </div>
15
- </div>
15
+ <!--</div>
16
16
  </div>
17
- </div>
17
+ </div>-->
18
18
 
19
- <div class="col-xl-9 col-lg-12">
19
+ <div class="container"> <!--class earlier= col-xl-9 col-lg-12-->
20
20
  <div class="row text-center">
21
21
  {% for entry in dataToShow.featureList %}
22
22
  <div class="col-lg-4 col-md-6 my-3">
@@ -4,20 +4,20 @@
4
4
  <!-- starting news section -->
5
5
  <div class="container-fluid">
6
6
  <div class="row rowHeight2">
7
- <div class="col-xl-3 col-lg-12">
7
+ <!--<div class="col-xl-3 col-lg-12">
8
8
  <div class="row">
9
- <div class="col-xl-3 p-0">
9
+ <div class="col-xl-3 p-0">-->
10
10
  <div class="news">
11
- <img src="/assets/images/left_obj_02.png" alt="">
12
- <span class="site-no">03</span>
11
+ <!-- <img src="/assets/images/left_obj_02.png" alt="">
12
+ <span class="site-no">03</span> -->
13
13
  <h5 class="title">{{dataToShow.Faq_title}}</h5>
14
14
  </div>
15
- </div>
15
+ <!-- </div>
16
16
  </div>
17
- </div>
17
+ </div> -->
18
18
 
19
19
 
20
- <div class="col-xl-9 col-lg-12">
20
+ <div class="container"> <!--class earlier=col-xl-9 col-lg-12 -->
21
21
  <div class="row my-xl-0">
22
22
  {% for entry in dataToShow.faqList %}
23
23
  <div class="col-md-6 pt-5">
@@ -59,7 +59,6 @@
59
59
  e.target.value = e.target.value.replace(/\?$/, '')
60
60
  }
61
61
  })
62
-
63
62
  </script>
64
63
 
65
64
  {% include Monumetric/Monumetric.html %}
@@ -43,6 +43,33 @@
43
43
  background-color: #F8F9FA !important;
44
44
  }
45
45
  </style>
46
+ <script>
47
+ const autoLoadDuration = 5; //In Seconds
48
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
49
+
50
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
51
+
52
+ eventList.forEach(function (event) {
53
+ window.addEventListener(event, triggerScripts, { passive: true })
54
+ });
55
+
56
+ function triggerScripts() {
57
+ runScripts();
58
+ clearTimeout(autoLoadTimeout);
59
+ eventList.forEach(function (event) {
60
+ window.removeEventListener(event, triggerScripts, { passive: true });
61
+ });
62
+ }
63
+
64
+ function runScripts() {
65
+ console.log(document.querySelector("script"))
66
+ console.log("Javascript Executed!")
67
+ console.log(document.querySelectorAll("script[delay]"))
68
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
69
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
70
+ });
71
+ }
72
+ </script>
46
73
 
47
74
  </head>
48
75
 
@@ -1,7 +1,8 @@
1
1
  .rowHeight3 {
2
- margin: 300px 0 150px 0;
2
+ /* margin: 300px 0 150px 0; */
3
+ margin: 120px -15px 0px -15px;
3
4
  }
4
- .blog {
5
+ /* .blog {
5
6
  margin-top: -80px;
6
7
  }
7
8
  .blog img {
@@ -10,7 +11,15 @@
10
11
  right: -15px;
11
12
  height: 700px;
12
13
  z-index: -1;
14
+ } */
15
+ .blog {
16
+ background: #b641da;
17
+ padding: 15px;
18
+ width: 100%;
19
+ color: white;
20
+ text-align: center;
13
21
  }
22
+
14
23
  .anchor_link {
15
24
  text-decoration: none !important;
16
25
  color: #343a40 !important;
data/assets/css/about.css CHANGED
@@ -1,5 +1,6 @@
1
1
  .rowHeight {
2
- margin: 300px 0 620px 0;
2
+ /* margin: 300px 0 620px 0; */
3
+ margin: 100px -15px 0px -15px;
3
4
  }
4
5
  .about_content > .text {
5
6
  width: 80%;
@@ -9,7 +10,7 @@
9
10
  position: relative;
10
11
  top: 100px;
11
12
  }
12
- .about {
13
+ /* .about {
13
14
  margin-top: -80px;
14
15
  }
15
16
  .about img {
@@ -18,6 +19,14 @@
18
19
  right: -15px;
19
20
  height: 700px;
20
21
  z-index: -1;
22
+ } */
23
+
24
+ .about {
25
+ background: #b641da;
26
+ padding: 10px 0;
27
+ width: 100%;
28
+ color: white;
29
+ text-align: center;
21
30
  }
22
31
  .content {
23
32
  position: absolute;
@@ -1,4 +1,4 @@
1
- .feature {
1
+ /* .feature {
2
2
  margin-top: -120px;
3
3
  margin-left: 60px;
4
4
  margin-bottom: 450px;
@@ -11,7 +11,27 @@
11
11
  height: 700px;
12
12
  z-index: -1;
13
13
  left: -15px;
14
+ } */
15
+
16
+ .feature {
17
+ padding: 15px;
18
+ background-color: #b641da;
19
+ margin-left: 0;
20
+ margin-top: 0;
21
+ margin-bottom: 0;
22
+ color: white;
23
+ text-align: center;
24
+ width: 100%;
25
+ }
26
+ .feature .feature-title,
27
+ .feature-description {
28
+ width: 100% !important;
29
+ text-align: center;
14
30
  }
31
+ /* .feature img,
32
+ .site-no {
33
+ display: none;
34
+ } */
15
35
 
16
36
  .card-body > i {
17
37
  font-size: 20px;
@@ -41,22 +61,6 @@
41
61
  }
42
62
 
43
63
  @media (max-width: 1125px) {
44
- .feature {
45
- padding: 15px;
46
- background-color: #b641da;
47
- margin-left: 0;
48
- margin-top: 0;
49
- margin-bottom: 0;
50
- }
51
- .feature .feature-title,
52
- .feature-description {
53
- width: 100% !important;
54
- text-align: center;
55
- }
56
- .feature img,
57
- .site-no {
58
- display: none;
59
- }
60
64
  .card-body .card-text {
61
65
  color: #6c757d !important;
62
66
  }
data/assets/css/news.css CHANGED
@@ -1,9 +1,12 @@
1
1
  .rowHeight2 {
2
- position: relative;
2
+ /* position: relative;
3
3
  top: 300px;
4
- margin-bottom: 550px;
4
+ margin-bottom: 550px; */
5
+ margin-top: 50px;
6
+ margin-bottom: 120px;
7
+ top: 0;
5
8
  }
6
- .news {
9
+ /*.news {
7
10
  margin-top: -120px;
8
11
  margin-left: 60px;
9
12
  color: #fff;
@@ -15,6 +18,15 @@
15
18
  height: 700px;
16
19
  z-index: -1;
17
20
  left: -15px;
21
+ }*/
22
+ .news{
23
+ padding: 15px;
24
+ background-color: #29dec0;
25
+ margin-left: 0;
26
+ margin-top: 0;
27
+ text-align: center;
28
+ color: white;
29
+ width: 100%;
18
30
  }
19
31
  .meduim-text2 {
20
32
  margin: 0 0 25px;
data/assets/css/style.css CHANGED
@@ -45,8 +45,11 @@ header {
45
45
  .navbar-dark .navbar-toggler {
46
46
  outline: none !important;
47
47
  }
48
+ .navbar-nav {
49
+ margin-left: 11rem;
50
+ }
48
51
  .navbar-nav .nav-item {
49
- padding: 0 10px;
52
+ padding: 0 15px;
50
53
  }
51
54
  .navbar-nav .nav-link:hover {
52
55
  color: var(--txtColor) !important;
@@ -60,12 +63,17 @@ header {
60
63
  color: gray !important;
61
64
  }
62
65
  .dropdown:hover .dropdown-menu {
63
- display: block;
66
+ display: grid;
67
+ grid-template-columns: auto auto;
64
68
  border: none;
65
69
  font-size: 14px;
66
70
  left: -70px;
67
71
  padding: 13.5px;
68
- background: transparent;
72
+ box-shadow: 0 1px 1px 0 #bdcad2;
73
+ background: whitesmoke;
74
+ padding: 3.5rem;
75
+ column-gap: 5rem;
76
+ row-gap: 1rem;
69
77
  }
70
78
  .bars {
71
79
  position: relative;
@@ -232,6 +240,7 @@ header {
232
240
  .navbar {
233
241
  padding: 1.2rem 15px !important;
234
242
  }
243
+
235
244
  .title,
236
245
  .description {
237
246
  width: 100% !important;
@@ -251,12 +260,19 @@ header {
251
260
  .heading {
252
261
  font-size: 40px;
253
262
  }
263
+ .dropdown:hover .dropdown-menu {
264
+ display: block;
265
+ }
254
266
  }
255
267
 
256
268
  @media (max-width: 992px) {
269
+ .navbar-nav {
270
+ margin-left: 0rem;
271
+ }
257
272
  .dropdown:hover .dropdown-menu {
258
273
  left: 0px;
259
274
  padding: 0;
275
+ grid-template-columns: auto auto !important;
260
276
  }
261
277
  .dropdown-item {
262
278
  text-align: left;
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: 0.6.2
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-08 00:00:00.000000000 Z
11
+ date: 2021-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll