word-games-theme 0.8.9 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/section/commonPage.html +107 -100
- data/_includes/section/wordGroup.html +12 -2
- data/_includes/section/xyzGroup.html +1 -1
- data/_layouts/page.html +0 -2
- data/_layouts/page2.html +0 -2
- data/_layouts/xyzpages.html +1 -1
- data/assets/css/advancedFilter.css +1 -6
- data/assets/css/home.css +8 -3
- data/assets/css/wordGroup.css +9 -4
- metadata +1 -2
- data/_includes/header/resultHeader.html +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de0ff341a9b71dadcd433d5ccaf3d85b878777f904b8be9c00e5534e7a42c56f
|
4
|
+
data.tar.gz: 548b00f7c0d058a14faab6830db9122888c78d554eaccbbbc65dc1e77341c311
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be388e4052ee52fd4652ce40262179f2cca485386808b7338cff6878872b245670f51c2e790097359075a19847db0a298e689975493b9edae2317873e919cfd8
|
7
|
+
data.tar.gz: 95350cfa8f920f7c42d5ec53749f0ed8918d4d6e57e5b0458590641dedce2d8024040c2a3b56cbc3bff18aa1d846dd7cae628e6ab834b8683978523d27cdc337
|
@@ -5,113 +5,120 @@
|
|
5
5
|
{%- assign CustomColor = site.data.theme.colors -%}
|
6
6
|
<!-- start commonPage as LandingPage -->
|
7
7
|
|
8
|
-
<!--
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
<!-- header starts -->
|
9
|
+
<header class="container" id="resultHeader">
|
10
|
+
<!-- navigation startss -->
|
11
|
+
<nav class="navbar-section navbar-expand-lg navbar-dark" style="background-color: #fff;">
|
12
|
+
<a href="/" title="{{dataToShow.tooltip}}" style="position: absolute; top:6px">
|
13
|
+
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
12
14
|
</a>
|
13
|
-
|
14
|
-
|
15
|
-
<div class="
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
</
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
<div class="text-right times" style="cursor: pointer; margin-top:-15px;">
|
57
|
-
<img src="../../assets/images/window-close.png" alt="" width="15px">
|
15
|
+
<div class="container" id="containerWd">
|
16
|
+
<section class="result_sticky_nav">
|
17
|
+
<div class="pageHeading text-center">
|
18
|
+
<h1 class="heading m-0 pb-0">
|
19
|
+
{{dataToShow.h1}}</h1>
|
20
|
+
</div>
|
21
|
+
<div class="serachSection2">
|
22
|
+
<div class="position-relative serachBox">
|
23
|
+
<form action="" id='form'>
|
24
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
25
|
+
placeholder="Enter up to 15 letters?" class="txtBox resultPageTxtBox" value=''
|
26
|
+
name="search" maxlength="15" value required autocomplete="off">
|
27
|
+
<input
|
28
|
+
style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
|
29
|
+
type="submit" class="serachBtn resultPageSearchBtn" id="serach" value>
|
30
|
+
<div class="dictonaryDropdown">
|
31
|
+
<select class="form-select select_dropDown2 resultPageDropdown2" name="dictionary"
|
32
|
+
aria-label="Default select example">
|
33
|
+
<option selected value="Dictionary">Dictionary</option>
|
34
|
+
<option value="twl06" id="twl06">TWL06 (US, Canada, Thailand)</option>
|
35
|
+
<option value="sowpods" id="sowpods">SOWPODS (Uk and Others)</option>
|
36
|
+
<option value="wwf" id="wwf">Enable (Words With Friends)</option>
|
37
|
+
</select>
|
38
|
+
</div>
|
39
|
+
{%- include filterWords/index.html -%}
|
40
|
+
<div class="wrapper_dropDown mt-3 d-flex justify-content-end" style="gap:10px;">
|
41
|
+
<div class="Advancedbtn" style="position: relative;" onclick="myFunction()">
|
42
|
+
<span class="filter_count" style="display: none;"></span>
|
43
|
+
<input type="button" value="Advanced Filter" class="filterButton">
|
44
|
+
<div class="angle-arrow"></div>
|
45
|
+
</div>
|
46
|
+
<div id="sort-select">
|
47
|
+
<select class="form-select sort-select" id="select_dropDown">
|
48
|
+
<option selected="true" hidden id="alpha" value="alpha">Sort by</option>
|
49
|
+
<option id="alpha" value="alpha">A-Z</option>
|
50
|
+
<option id="alpha" value="alpha">Z-A</option>
|
51
|
+
<option id="alpha" value="alpha">Points</option>
|
52
|
+
</select>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
<div class="fillterWrapper hide">
|
56
|
+
<div class="text-right times" style="cursor: pointer; margin-top:-15px;">
|
57
|
+
<img src="../../assets/images/window-close.png" alt="" width="15px">
|
58
58
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
59
|
+
</div>
|
60
|
+
<div class="startsWith same">
|
61
|
+
<label data-toggle="tooltip" data-placement="top"
|
62
|
+
title="Filter for words that starts with these letters" for="startsWith">Starts
|
63
|
+
With</label>
|
64
|
+
<input type="text" class="filter_val" id="startsWith" placeholder="Prefix" value=""
|
65
|
+
name="prefix">
|
66
|
+
</div>
|
67
|
+
<div class="mustInclude same">
|
68
|
+
<label for="mustInclude" data-toggle="tooltip" data-placement="top"
|
69
|
+
title=" Words that contain letters in this order(ab)">Must Contains </label>
|
70
|
+
<input type="text" class="filter_val" id="mustInclude" placeholder="Contains"
|
71
|
+
name="contains" value="">
|
72
|
+
</div>
|
73
|
+
<div class="endsWith same">
|
74
|
+
<label for="endsWith" data-toggle="tooltip" data-placement="top"
|
75
|
+
title="Filter for words that ends with these letters">End With</label>
|
76
|
+
<input type="text" class="filter_val" id="endsWith" placeholder="Suffix"
|
77
|
+
name="suffix" value="">
|
78
|
+
</div>
|
79
|
+
<div class="exculdeWith same">
|
80
|
+
<label data-toggle="tooltip" data-placement="top"
|
81
|
+
title="Only words that not contain the letters you enter here"
|
82
|
+
for="exculdeWith">Exculde</label>
|
83
|
+
<br>
|
84
|
+
<input type="text" class="filter_val" id="exculdeWith" placeholder="Exculde"
|
85
|
+
value="" name="exculde">
|
86
|
+
</div>
|
87
|
+
<div class="inculdeWith same">
|
88
|
+
<label data-toggle="tooltip" data-placement="top"
|
89
|
+
title="Only words that contain the letters you enter here"
|
90
|
+
for="inculdeWith">Include</label>
|
91
|
+
<br>
|
92
|
+
<input type="text" class="filter_val" id="inculdeWith" placeholder="Include"
|
93
|
+
value="" name="include">
|
94
|
+
</div>
|
95
|
+
<div class="wordLength same">
|
96
|
+
<label data-toggle="tooltip" data-placement="top"
|
97
|
+
title="Filter for words with this length" for="wordLength">Word Length </label>
|
98
|
+
<input type="text" class="filter_val" id="wordLength" placeholder="Length"
|
99
|
+
name="length" value="">
|
100
|
+
</div>
|
101
101
|
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
102
|
+
<div style="margin-top: 1.2rem; gap:5px" class="d-flex w-100">
|
103
|
+
<input type="button" value="Clear" class="clearFilter btn-info text-white"
|
104
|
+
style="background-color:#808080;">
|
105
|
+
<input type="submit" value="Apply" class="btn-info text-white"
|
106
|
+
style="background: #808080">
|
107
|
+
</div>
|
108
|
+
</div>
|
109
|
+
</form>
|
107
110
|
</div>
|
108
|
-
</
|
109
|
-
</
|
111
|
+
</div>
|
112
|
+
</section>
|
110
113
|
</div>
|
111
|
-
</
|
112
|
-
|
114
|
+
</nav>
|
115
|
+
</header>
|
116
|
+
<div class="container" id="containerWd">
|
113
117
|
{% include section/wordGroup.html %}
|
114
118
|
</div>
|
119
|
+
<!-- navbar close -->
|
120
|
+
<!-- header close -->
|
121
|
+
|
115
122
|
|
116
123
|
<!-- close commonPage as LandingPage -->
|
117
124
|
<link rel="stylesheet" href="{{ '/assets/css/advancedFilter.css' | relative_url }}">
|
@@ -1,7 +1,17 @@
|
|
1
|
-
|
1
|
+
{%- if page.layout == "page2" -%}
|
2
|
+
<div class="row pagePad" style="padding:170px .2rem 5rem .2rem">
|
2
3
|
<div class="col-md-12">
|
3
4
|
<div class="wordCount"></div>
|
4
5
|
<div class="main"></div>
|
5
6
|
<div class="errorMsg"></div>
|
6
7
|
</div>
|
7
|
-
</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 -%}
|
data/_layouts/page.html
CHANGED
data/_layouts/page2.html
CHANGED
data/_layouts/xyzpages.html
CHANGED
@@ -68,7 +68,7 @@
|
|
68
68
|
.sticky_nav {
|
69
69
|
position: sticky;
|
70
70
|
width: inherit;
|
71
|
-
top:
|
71
|
+
top: 58px;
|
72
72
|
background-color: #fff;
|
73
73
|
z-index: 99;
|
74
74
|
}
|
@@ -136,11 +136,6 @@ a {
|
|
136
136
|
background-color: #f8f9fa;
|
137
137
|
}
|
138
138
|
|
139
|
-
.sticky_nav {
|
140
|
-
top: 0px;
|
141
|
-
padding-top: 4rem;
|
142
|
-
}
|
143
|
-
|
144
139
|
.Advancedbtn {
|
145
140
|
margin: 0;
|
146
141
|
height: 0;
|
data/assets/css/home.css
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
}
|
13
13
|
.pageHeading {
|
14
14
|
margin-bottom: 0.8rem;
|
15
|
-
padding-top: 1.5rem;
|
15
|
+
/* padding-top: 1.5rem; */
|
16
16
|
}
|
17
17
|
.pageHeading > h1 {
|
18
18
|
font-size: 30px;
|
@@ -298,8 +298,7 @@ input:-webkit-autofill:active {
|
|
298
298
|
height: 300px;
|
299
299
|
}
|
300
300
|
.pageHeading{
|
301
|
-
margin-bottom:
|
302
|
-
/* padding: 0; */
|
301
|
+
margin-bottom: 1rem;
|
303
302
|
}
|
304
303
|
.pageHeading > h2{
|
305
304
|
font-size: 1.4rem;
|
@@ -328,6 +327,12 @@ input:-webkit-autofill:active {
|
|
328
327
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
|
329
328
|
}
|
330
329
|
}
|
330
|
+
@media (max-width:400px) {
|
331
|
+
.pageHeading{
|
332
|
+
padding-left: 25px;
|
333
|
+
}
|
334
|
+
|
335
|
+
}
|
331
336
|
@media (max-width: 768px) {
|
332
337
|
#select_dropDown {
|
333
338
|
bottom: 0;
|
data/assets/css/wordGroup.css
CHANGED
@@ -44,9 +44,7 @@
|
|
44
44
|
text-decoration: none !important;
|
45
45
|
font-weight: 600;
|
46
46
|
}
|
47
|
-
|
48
|
-
margin-top: 15px;
|
49
|
-
}
|
47
|
+
|
50
48
|
.points {
|
51
49
|
color: #73716e;
|
52
50
|
font-weight: 600;
|
@@ -55,8 +53,15 @@
|
|
55
53
|
@media (max-width: 768px) {
|
56
54
|
.wordCount {
|
57
55
|
font-size: 1.3rem;
|
56
|
+
margin-top: 15px;
|
57
|
+
}
|
58
|
+
.pagePad{
|
59
|
+
padding-top: 100px !important ;
|
58
60
|
}
|
59
61
|
.pad {
|
60
|
-
padding-top:
|
62
|
+
padding-top: 145px !important;
|
63
|
+
}
|
64
|
+
.xyzPad{
|
65
|
+
padding-top: 50px;
|
61
66
|
}
|
62
67
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: word-games-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
@@ -117,7 +117,6 @@ files:
|
|
117
117
|
- _includes/head/index.html
|
118
118
|
- _includes/header/blogHeader.html
|
119
119
|
- _includes/header/index.html
|
120
|
-
- _includes/header/resultHeader.html
|
121
120
|
- _includes/paginationBlogPage.html
|
122
121
|
- _includes/paginationPostPage.html
|
123
122
|
- _includes/postauthorbio.html
|
@@ -1,15 +0,0 @@
|
|
1
|
-
{% assign lang = page.lang %}
|
2
|
-
{% assign dataToShow = site.data.header[lang].data %}
|
3
|
-
{%- assign CustomColor = site.data.theme.colors -%}
|
4
|
-
|
5
|
-
<!-- header starts -->
|
6
|
-
<header id="resultHeader">
|
7
|
-
<!-- navigation startss -->
|
8
|
-
<nav class="navbar-section navbar-expand-lg navbar-dark">
|
9
|
-
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
10
|
-
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
11
|
-
</a>
|
12
|
-
</nav>
|
13
|
-
<!-- navbar close -->
|
14
|
-
</header>
|
15
|
-
<!-- header close -->
|