word-games-theme 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/_data/blog/nav.json +1 -1
  3. data/_data/header/en/data.json +10 -2
  4. data/_data/wordgames/en/anagram_word_finder.json +2 -0
  5. data/_data/wordgames/en/feature_certain_positions.json +54 -0
  6. data/_data/wordgames/en/find-words-that-start-with-the-letters.json +54 -0
  7. data/_data/wordgames/en/root.json +10 -2
  8. data/_data/wordleSolver/en/data.json +6 -0
  9. data/_includes/Monumetric/Monumetric.html +48 -0
  10. data/_includes/autogenerated/content.html +1 -4
  11. data/_includes/cssfile/links.html +12 -0
  12. data/_includes/custom-head.html +0 -29
  13. data/_includes/find-words-in-certain-positions/words-in-certain-positions.html +167 -0
  14. data/_includes/head/index.html +3 -29
  15. data/_includes/header/blogHeader.html +1 -2
  16. data/_includes/header/index.html +1 -1
  17. data/_includes/script.html +16 -12
  18. data/_includes/section/commonPage.html +105 -101
  19. data/_includes/section/feature.html +1 -1
  20. data/_includes/section/home2.html +1 -1
  21. data/_includes/section/news.html +8 -7
  22. data/_includes/section/related_categories_post.html +155 -150
  23. data/_includes/section/wordGroup.html +2 -12
  24. data/_includes/wordle-solver/wordle-solver.html +2 -3
  25. data/_layouts/allpages.html +1 -6
  26. data/_layouts/autogencontent.html +2 -5
  27. data/_layouts/blog.html +1 -2
  28. data/_layouts/default.html +18 -21
  29. data/_layouts/disclaimer.html +5 -2
  30. data/_layouts/page.html +7 -17
  31. data/_layouts/page2.html +3 -18
  32. data/_layouts/post.html +26 -23
  33. data/_layouts/privacyPolicy.html +2 -1
  34. data/_layouts/termAndCondition.html +1 -0
  35. data/_layouts/{wordleSolver.html → tools.html} +18 -11
  36. data/_layouts/wordMeaning.html +21 -35
  37. data/_layouts/xyzpages.html +1 -6
  38. data/assets/css/advancedFilter.css +8 -0
  39. data/assets/css/content.css +3 -3
  40. data/assets/css/home.css +58 -41
  41. data/assets/css/news.css +2 -2
  42. data/assets/css/style.css +26 -7
  43. data/assets/css/wordGroup.css +6 -3
  44. data/assets/css/wordleSolver.css +8 -14
  45. data/assets/css/wordsInCertainPosition.css +139 -0
  46. data/assets/images/wordswithletters-logo.png +0 -0
  47. data/assets/js/X-letter.js +15 -2
  48. data/assets/js/wordScrabble.js +4 -1
  49. data/assets/js/wordleSolver.js +25 -18
  50. data/assets/js/words-in-certain-positions.js +200 -0
  51. data/assets/js/words-starting-with.js +564 -0
  52. metadata +11 -3
@@ -1,17 +1,7 @@
1
- {%- if page.layout == "page2" -%}
2
- <div class="row pagePad" style="padding:170px .2rem 5rem .2rem">
1
+ <div class="row pad">
3
2
  <div class="col-md-12">
4
3
  <div class="wordCount"></div>
5
4
  <div class="main"></div>
6
5
  <div class="errorMsg"></div>
7
6
  </div>
8
- </div>
9
- {%- else -%}
10
- <div class="row pad" style="padding:210px .2rem 5rem .2rem">
11
- <div class="col-md-12">
12
- <div class="wordCount"></div>
13
- <div class="main"></div>
14
- <div class="errorMsg"></div>
15
- </div>
16
- </div>
17
- {%- endif -%}
7
+ </div>
@@ -106,8 +106,6 @@
106
106
  </div>
107
107
  </div>
108
108
  </div>
109
-
110
-
111
109
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"
112
110
  integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
113
111
  <script>
@@ -129,4 +127,5 @@
129
127
  document.getElementById(last).focus()
130
128
  }
131
129
  }
132
- </script>
130
+ </script>
131
+ <script defer src="../assets/js/wordleSolver.js"></script>
@@ -8,13 +8,8 @@
8
8
 
9
9
  {{content}}
10
10
 
11
-
12
11
  {%- include footer/index.html -%}
13
- <link rel="stylesheet"
14
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
15
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
16
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
17
- {% include Monumetric/Monumetric.html %}
12
+ {%- include script.html -%}
18
13
  </body>
19
14
 
20
15
  </html>
@@ -8,11 +8,8 @@
8
8
 
9
9
  {% include autogenerated/footer.html %}
10
10
 
11
- <link rel="stylesheet"
12
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
13
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
14
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
15
- {% include Monumetric/Monumetric.html %}
11
+ {%- include script.html -%}
12
+
16
13
  </body>
17
14
 
18
15
  </html>
data/_layouts/blog.html CHANGED
@@ -60,12 +60,11 @@
60
60
 
61
61
  {% include section/count.html %}
62
62
  </section>
63
- {%- include section/alertbar.html -%}
63
+ <!-- {%- include section/alertbar.html -%} -->
64
64
 
65
65
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
66
66
  {% include script.html %}
67
67
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
68
- {% include Monumetric/Monumetric.html %}
69
68
  </body>
70
69
 
71
70
  </html>
@@ -33,28 +33,26 @@
33
33
  {%- include share/socialshare.html -%}
34
34
  {%- include Rating/rating.html -%}
35
35
 
36
- {%- if site.posts.size>0 -%}
37
- {% include section/blog.html %}
36
+ {%- assign langen = "en" -%}
37
+ {%- if site.data[folder][langen][file].categories -%}
38
+ {% assign categories= site.data[folder][langen][file].categories %}
39
+ {%- else -%}
40
+ {% assign categories= page.categories %}
38
41
  {%- endif -%}
39
-
42
+ {%- if site.data[folder][langen][file].tags -%}
43
+ {% assign tags= site.data[folder][langen][file].tags %}
44
+ {%- else -%}
45
+ {% assign tags= page.tags %}
46
+ {%- endif -%}
47
+ {%- if categories.size> 0 or tags.size>0-%}
48
+ {%- include section/related_categories_post.html -%}
49
+ {%- else -%}
50
+ {%- include section/recent_posts.html -%}
51
+ {% endif %}
40
52
 
41
53
  {%- include footer/index.html -%}
42
54
 
43
- <link rel="stylesheet"
44
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
45
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
46
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
47
- <script>
48
- (function () {
49
- d = document;
50
- c = d.createElement('link');
51
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
52
- c.rel = 'stylesheet';
53
- d.head.appendChild(c);
54
- })();
55
- </script>
56
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
57
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
55
+ {%- include script.html -%}
58
56
  <script>
59
57
  let txtBox = document.querySelector('.txtBox')
60
58
  let focusBorder = document.querySelector('.focus-border')
@@ -69,14 +67,13 @@
69
67
  e.target.value = e.target.value.replace(/ /g, '?')
70
68
  let data = []
71
69
  data = e.target.value.split('').filter((i) => i === '?')
72
- console.log(data.length)
73
- console.log(rangeOfBlankTile)
70
+ // console.log(data.length)
71
+ // console.log(rangeOfBlankTile)
74
72
  if (data.length > rangeOfBlankTile) {
75
73
  e.target.value = e.target.value.replace(/\?$/, '')
76
74
  }
77
75
  })
78
76
  </script>
79
- {% include Monumetric/Monumetric.html %}
80
77
  </body>
81
78
 
82
79
  </html>
@@ -5,8 +5,9 @@
5
5
  <!DOCTYPE html>
6
6
  <html lang="{{disclaimerData.htmlLangAtt}}">
7
7
  {%- include head/index.html -%}
8
+
8
9
  <body>
9
- {%- include header/index.html -%}
10
+ {%- include header/index.html -%}
10
11
 
11
12
  <!-- Start page-top section -->
12
13
  <section class="page-top-section">
@@ -110,7 +111,9 @@
110
111
  </div>
111
112
  </section>
112
113
  <!-- End main body content -->
113
- {%- include footer/index.html -%}
114
+ {%- include footer/index.html -%}
115
+
116
+ {%- include script.html -%}
114
117
  </body>
115
118
 
116
119
  </html>
data/_layouts/page.html CHANGED
@@ -55,23 +55,13 @@
55
55
 
56
56
  {%- include footer/index.html -%}
57
57
 
58
- <link rel="stylesheet"
59
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
60
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
61
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
62
- <script>
63
- (function () {
64
- d = document;
65
- c = d.createElement('link');
66
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
67
- c.rel = 'stylesheet';
68
- d.head.appendChild(c);
69
- })();
70
- </script>
71
- <script data-range="{{page.blanktilerange}}" src="/assets/js/wordScrabble.js"></script>
72
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
73
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
74
- {% include Monumetric/Monumetric.html %}
58
+ {%- include script.html -%}
59
+
60
+
61
+
62
+ {%- if page.tool != 'words-that-start-with-the-letters' -%}
63
+ <script data-url="{{site.url}}" data-range="{{page.blanktilerange}}" src="/assets/js/wordScrabble.js"></script>
64
+ {%- endif -%}
75
65
  </body>
76
66
 
77
67
  </html>
data/_layouts/page2.html CHANGED
@@ -51,24 +51,9 @@
51
51
 
52
52
  {%- include footer/index.html -%}
53
53
 
54
-
55
- <link rel="stylesheet"
56
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
57
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
58
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
59
- <script>
60
- (function () {
61
- d = document;
62
- c = d.createElement('link');
63
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
64
- c.rel = 'stylesheet';
65
- d.head.appendChild(c);
66
- })();
67
- </script>
68
- <script src="/assets/js/X-letter.js" data-letter="{{page.letter}}" data-ablank="{{page.ablank}}"></script>
69
- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
70
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
71
- {% include Monumetric/Monumetric.html %}
54
+ {%- include script.html -%}
55
+ <script src="/assets/js/X-letter.js" data-name="{{site.name}}" data-url="{{site.url}}" data-letter="{{page.letter}}"
56
+ data-ablank="{{page.ablank}}"></script>
72
57
  </body>
73
58
 
74
59
  </html>
data/_layouts/post.html CHANGED
@@ -1,15 +1,12 @@
1
1
  <html>
2
-
3
2
  {% include custom-head.html %}
4
-
5
-
6
3
  <style>
7
4
  p {
8
5
  margin-bottom: 3rem;
9
6
  }
10
7
 
11
8
  .mainThings {
12
- padding-left: 40px;
9
+ /* padding-left: 40px; */
13
10
  position: sticky;
14
11
  top: 80px;
15
12
  }
@@ -34,12 +31,12 @@
34
31
  <section class="section_post">
35
32
  <div class="container">
36
33
  <div class="row section-title-wrap">
37
- <div class="col-md-12 mt-5">
34
+ <div class="col-md-8 mx-auto mt-5">
38
35
  <h1 class="display-4" style="font-weight: 900;">{{ page.title }}</h1>
39
36
  </div>
40
37
  </div>
41
38
  <div class="row mt-5">
42
- <div class="col-md-8">
39
+ <div class="col-md-8 mx-auto">
43
40
  {%- include authors/authors.html -%}
44
41
  {%- include postauthorbio.html -%}
45
42
  {% if page.author %}
@@ -51,7 +48,7 @@
51
48
 
52
49
  {%- include paginationPostPage.html -%}
53
50
  </div>
54
- <div class="col-md-4">
51
+ <div class="col-md-8 mx-auto">
55
52
  <div class="mainThings">
56
53
  <div class="socialIons">
57
54
  <ul class="list-unstyled item-lists2">
@@ -80,10 +77,15 @@
80
77
  {%- if page.URLS -%}
81
78
  <h3 class="font-weight-bolder">Checkout out these features</h3>
82
79
  <br>
83
- {%- for item in page.URLS -%}
84
- <p class="mb-3"> <a class="featureLink" style="font-size: 13px"
85
- href="{{item.url}}">{{item.name}}</a></p>
86
- {%- endfor -%}
80
+ <div class="row">
81
+ {%- for item in page.URLS -%}
82
+ {%- if item.name-%}
83
+
84
+ <p class="mb-3 col-md-6 col-lg-3"> <a class="featureLink" style="font-size: 13px"
85
+ href="{{item.url}}">{{item.name}}</a></p>
86
+ {%- endif -%}
87
+ {%- endfor -%}
88
+ </div>
87
89
  {% else %}
88
90
  <h3 class="font-weight-bolder">Checkout out these features</h3>
89
91
  <br>
@@ -96,16 +98,18 @@
96
98
  {%- endif -%}
97
99
  {%- endfor -%}
98
100
 
99
- {%- for url in allRandomUrls limit: 10-%}
100
- {% if url %}
101
- <p class="mb-3">
102
- <a class="featureLink" style="font-size: 13px" href="{{url }}">
103
- {%- assign name = url | replace: '/', ' ' | replace: '-', ' ' -%}
104
- {{ name }}
105
- </a>
106
- </p>
107
- {%- endif -%}
108
- {%- endfor -%}
101
+ <div class="row">
102
+ {%- for url in allRandomUrls limit: 10-%}
103
+ {% if url %}
104
+ <p class="mb-3 col-md-6 col-lg-3">
105
+ <a class="featureLink" style="font-size: 13px" href="{{url }}">
106
+ {%- assign name = url | replace: '/', ' ' | replace: '-', ' ' -%}
107
+ {{ name }}
108
+ </a>
109
+ </p>
110
+ {%- endif -%}
111
+ {%- endfor -%}
112
+ </div>
109
113
  {%- endif -%}
110
114
 
111
115
  </div>
@@ -127,11 +131,10 @@
127
131
  </div>
128
132
  </section>
129
133
  {%- include section/count.html -%}
130
- {%- include section/alertbar.html -%}
134
+ <!-- {%- include section/alertbar.html -%} -->
131
135
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
132
136
  {% include script.html %}
133
137
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
134
- {% include Monumetric/Monumetric.html %}
135
138
  </body>
136
139
 
137
140
  </html>
@@ -414,7 +414,8 @@
414
414
  </section>
415
415
  <!-- End main body content -->
416
416
 
417
- {%- include footer/index.html -%}
417
+ {%- include footer/index.html -%}
418
+ {%- include script.html -%}
418
419
 
419
420
  </body>
420
421
 
@@ -415,6 +415,7 @@
415
415
 
416
416
 
417
417
  {%- include footer/index.html -%}
418
+ {%- include script.html -%}
418
419
 
419
420
  </body>
420
421
 
@@ -9,12 +9,10 @@
9
9
  {%- include head/index.html -%}
10
10
 
11
11
  <body>
12
- <link rel="stylesheet" href="{{ '../assets/css/wordleSolver.css' | relative_url }}">
13
12
  {%- include header/index.html -%}
14
13
 
15
-
16
14
  {%- if homeData.h1 or homeData.h2 -%}
17
- <div class="wordleSolver_headings">
15
+ <div class="tools_headings">
18
16
  <div class="container">
19
17
  <div class="pageHeading text-center">
20
18
  <h1 class="heading pb-0 m-0">{{homeData.h1}}</h1>
@@ -26,7 +24,7 @@
26
24
  </div>
27
25
  {%- endif -%}
28
26
 
29
- <div class="wordleSolver-feature">
27
+ <div class="tools-feature">
30
28
  {{content}}
31
29
  </div>
32
30
 
@@ -41,18 +39,27 @@
41
39
 
42
40
  {%- include Rating/rating.html -%}
43
41
 
44
-
42
+ {%- assign langen = "en" -%}
43
+ {%- if site.data[folder][langen][file].categories -%}
44
+ {% assign categories= site.data[folder][langen][file].categories %}
45
+ {%- else -%}
46
+ {% assign categories= page.categories %}
47
+ {%- endif -%}
48
+ {%- if site.data[folder][langen][file].tags -%}
49
+ {% assign tags= site.data[folder][langen][file].tags %}
50
+ {%- else -%}
51
+ {% assign tags= page.tags %}
52
+ {%- endif -%}
53
+ {%- if categories.size> 0 or tags.size>0-%}
45
54
  {%- include section/related_categories_post.html -%}
46
-
55
+ {%- else -%}
56
+ {%- include section/recent_posts.html -%}
57
+ {% endif %}
47
58
 
48
59
 
49
60
  {%- include footer/index.html -%}
50
- <link rel="stylesheet"
51
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
52
61
 
53
- <script defer src="../assets/js/wordleSolver.js"></script>
54
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
55
- {% include Monumetric/Monumetric.html %}
62
+ {%- include script.html -%}
56
63
  </body>
57
64
 
58
65
  </html>
@@ -29,9 +29,9 @@
29
29
 
30
30
  <link rel="stylesheet" href="{{ '/assets/css/home.css' | relative_url }}">
31
31
  <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
32
+ <link rel="stylesheet" href="/assets/css/HomePageblog.css">
32
33
  <link rel="stylesheet" href="{{ '/assets/css/footer.css' | relative_url }}">
33
34
 
34
-
35
35
  {%- include google-analytics.html -%}
36
36
 
37
37
 
@@ -46,35 +46,9 @@
46
46
  background-color: #F8F9FA !important;
47
47
  }
48
48
  </style>
49
- {%- if site.MonumetricID -%}
50
- <script>
51
- const autoLoadDuration = 5; //In Seconds
52
- const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
53
-
54
- const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
55
-
56
- eventList.forEach(function (event) {
57
- window.addEventListener(event, triggerScripts, { passive: true })
58
- });
59
-
60
- function triggerScripts() {
61
- runScripts();
62
- clearTimeout(autoLoadTimeout);
63
- eventList.forEach(function (event) {
64
- window.removeEventListener(event, triggerScripts, { passive: true });
65
- });
66
- }
67
49
 
68
- function runScripts() {
69
- console.log(document.querySelector("script"))
70
- console.log("Javascript Executed!")
71
- console.log(document.querySelectorAll("script[delay]"))
72
- document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
73
- scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
74
- });
75
- }
76
- </script>
77
- {%- endif -%}
50
+ {% include Monumetric/Monumetric.html %}
51
+
78
52
  </head>
79
53
 
80
54
  <body>
@@ -127,15 +101,27 @@
127
101
  </div>
128
102
  </div>
129
103
 
130
- {%- include footer/index.html -%}
104
+ {%- assign langen = "en" -%}
105
+ {%- if site.data[folder][langen][file].categories -%}
106
+ {% assign categories= site.data[folder][langen][file].categories %}
107
+ {%- else -%}
108
+ {% assign categories= page.categories %}
109
+ {%- endif -%}
110
+ {%- if site.data[folder][langen][file].tags -%}
111
+ {% assign tags= site.data[folder][langen][file].tags %}
112
+ {%- else -%}
113
+ {% assign tags= page.tags %}
114
+ {%- endif -%}
115
+ {%- if categories.size> 0 or tags.size>0-%}
116
+ {%- include section/related_categories_post.html -%}
117
+ {%- else -%}
118
+ {%- include section/recent_posts.html -%}
119
+ {% endif %}
131
120
 
121
+ {%- include footer/index.html -%}
132
122
 
133
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
134
- <link rel="stylesheet"
135
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
123
+ {%- include script.html -%}
136
124
  <script src="/assets/js/scrabbleDictonary.js"></script>
137
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
138
- {% include Monumetric/Monumetric.html %}
139
125
  </body>
140
126
 
141
127
  </html>
@@ -93,12 +93,7 @@
93
93
 
94
94
  {% include xyzpages/xyzFooter.html %}
95
95
 
96
- <link rel="stylesheet"
97
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
98
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
99
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
100
- {% include Monumetric/Monumetric.html %}
101
-
96
+ {%- include script.html -%}
102
97
  </body>
103
98
 
104
99
  </html>
@@ -1,3 +1,11 @@
1
+ #home_page_search_result{
2
+ padding:10px;
3
+ font-size: 12px;
4
+ }
5
+ #home_page_search_result:hover{
6
+ text-decoration: underline !important;
7
+ }
8
+
1
9
  .result_header > .result_header_logo {
2
10
  position: fixed;
3
11
  z-index: 999;
@@ -1,7 +1,7 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
1
+ @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
2
2
  .article {
3
- padding-top: 150px;
4
- font-family: Montserrat, sans-serif;
3
+ padding-top: 100px;
4
+ font-family: 'Poppins', sans-serif !important;
5
5
  }
6
6
  .main_h1 {
7
7
  font-size: 30px;
data/assets/css/home.css CHANGED
@@ -10,12 +10,29 @@
10
10
  background-size: cover;
11
11
  margin-bottom: 20vh;
12
12
  }
13
+ .result_navbar_section{
14
+ width: 100%;
15
+ padding: .8rem 9% !important;
16
+ position: sticky;
17
+ top: 0;
18
+ z-index: 999;
19
+ display: flex;
20
+ justify-content: space-between;
21
+ flex-wrap: wrap;
22
+ -ms-flex-align: center;
23
+ align-items: center;
24
+ }
13
25
  .pageHeading {
14
26
  margin-bottom: 0.8rem;
15
27
  /* padding-top: 1.5rem; */
16
28
  }
17
29
  .pageHeading > h1 {
18
- font-size: 24px;
30
+ font-size: 30px;
31
+ }
32
+ .pageHeading > .result_heading{
33
+ font-size: 22px;
34
+ font-weight: 600;
35
+ color: #000;
19
36
  }
20
37
  .table {
21
38
  height: 5em;
@@ -293,47 +310,47 @@ input:-webkit-autofill:active {
293
310
  width: 700px !important;
294
311
  padding: 0px;
295
312
  }
313
+
296
314
  @media (max-width: 768px) {
297
- .pageHeaderBg{
298
- height: 300px;
299
- }
300
- .pageHeading{
301
- margin-bottom: 1rem;
302
- }
303
- .pageHeading > h2{
304
- font-size: 1.4rem;
305
- }
306
- .wrapper_dropDown {
307
- align-items: flex-end;
308
- flex-direction: column;
309
- gap: 0 !important;
310
- /* margin:0 !important */
311
- }
312
- .txtBox {
313
- height: 50px !important;
314
- }
315
- .serachBtn {
316
- height: 50px !important;
317
- width: 40px !important;
318
- }
319
- .advancedFilter .filterButton {
320
- top: 60px;
321
- }
322
- .select_dropDown2 {
323
- height: 50px;
324
- width: 30%;
325
- right: 40px;
326
- padding: 9.5px 0;
327
- border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
328
- }
329
- }
330
- @media (max-width:600px) {
331
- .pageHeading{
315
+ .result_navbar_section{
316
+ padding: 1.2rem 15px !important;
317
+ }
318
+ .pageHeaderBg{
319
+ height: 300px;
320
+ }
321
+ .pageHeading{
322
+ margin-bottom: 1rem;
323
+ }
324
+ .pageHeading > h2{
325
+ font-size: 1.4rem;
326
+ }
327
+ .pageHeading > .result_heading{
328
+ font-size: 1.8rem;
332
329
  padding-left: 25px;
333
- }
334
-
335
- }
336
- @media (max-width: 768px) {
330
+ }
331
+ .wrapper_dropDown {
332
+ align-items: flex-end;
333
+ flex-direction: column;
334
+ gap: 0 !important;
335
+ /* margin:0 !important */
336
+ }
337
+ .txtBox {
338
+ height: 50px !important;
339
+ }
340
+ .serachBtn {
341
+ height: 50px !important;
342
+ width: 40px !important;
343
+ }
344
+ .advancedFilter .filterButton {
345
+ top: 60px;
346
+ }
347
+ .select_dropDown2 {
348
+ height: 50px;
349
+ width: 30%;
350
+ right: 40px;
351
+ padding: 9.5px 0;
352
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
353
+ }
337
354
  #select_dropDown {
338
355
  bottom: 0;
339
356
  position: fixed;
@@ -344,7 +361,7 @@ input:-webkit-autofill:active {
344
361
  z-index: 99;
345
362
  }
346
363
  .pageHeading h1 {
347
- font-size: 1.8rem;
364
+ font-size: 2rem;
348
365
  }
349
366
  #containerWd {
350
367
  width: 100% !important;