word-games-theme 0.1.1
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +2 -0
- data/_data/blog/alertbar.yml +3 -0
- data/_data/blog/blog.yml +2 -0
- data/_data/blog/nav.json +14 -0
- data/_data/blog/share.yml +27 -0
- data/_data/footer/en/data.json +75 -0
- data/_data/footer/hi/data.json +69 -0
- data/_data/footer/networksites.json +16 -0
- data/_data/header/en/data.json +71 -0
- data/_data/header/hi/data.json +145 -0
- data/_data/wordgames/en/anagram_word_finder.json +55 -0
- data/_data/wordgames/en/eight_letter_word_finder.json +224 -0
- data/_data/wordgames/en/eleven_letter_word_finder.json +184 -0
- data/_data/wordgames/en/five_letter_word_finder.json +188 -0
- data/_data/wordgames/en/four_letter_word_finder.json +176 -0
- data/_data/wordgames/en/jumble_word_finder.json +62 -0
- data/_data/wordgames/en/lexical_word_finder.json +54 -0
- data/_data/wordgames/en/nine_letter_word_finder.json +184 -0
- data/_data/wordgames/en/root.json +88 -0
- data/_data/wordgames/en/scrabble_word_finder_cheat.json +55 -0
- data/_data/wordgames/en/seven_letter_word_finder.json +184 -0
- data/_data/wordgames/en/six_letter_word_finder.json +176 -0
- data/_data/wordgames/en/ten_letter_word_finder.json +184 -0
- data/_data/wordgames/en/thirteen_letter_word_finder.json +184 -0
- data/_data/wordgames/en/three_letter_word_finder.json +188 -0
- data/_data/wordgames/en/twelve_letter_word_finder.json +184 -0
- data/_data/wordgames/en/two_letter_word_finder.json +188 -0
- data/_data/wordgames/en/words_with_friends_word_finder.json +56 -0
- data/_includes/Rating/rating.html +88 -0
- data/_includes/Rating/structureddata.html +53 -0
- data/_includes/author_bio.html +16 -0
- data/_includes/authors/authors.html +27 -0
- data/_includes/custom-head.html +32 -0
- data/_includes/disqus_comments.html +11 -0
- data/_includes/filterWords/index.html +11 -0
- data/_includes/footer/index.html +40 -0
- data/_includes/google-analytics.html +23 -0
- data/_includes/head/index.html +105 -0
- data/_includes/header/blogHeader.html +28 -0
- data/_includes/header/index.html +48 -0
- data/_includes/paginationBlogPage.html +35 -0
- data/_includes/paginationPostPage.html +15 -0
- data/_includes/postauthorbio.html +18 -0
- data/_includes/postbox.html +30 -0
- data/_includes/script.html +14 -0
- data/_includes/section/about.html +26 -0
- data/_includes/section/alertbar.html +12 -0
- data/_includes/section/blog.html +39 -0
- data/_includes/section/commonPage.html +119 -0
- data/_includes/section/count.html +24 -0
- data/_includes/section/feature.html +35 -0
- data/_includes/section/home.html +68 -0
- data/_includes/section/home2.html +93 -0
- data/_includes/section/news.html +33 -0
- data/_includes/section/recent_posts.html +43 -0
- data/_includes/section/related_categories_post.html +74 -0
- data/_includes/section/related_tag_post.html +60 -0
- data/_includes/section/wordGroup.html +7 -0
- data/_includes/seo.html +57 -0
- data/_includes/share/socialshare.html +50 -0
- data/_layouts/blog.html +67 -0
- data/_layouts/categories.html +26 -0
- data/_layouts/default.html +35 -0
- data/_layouts/disclaimer.html +116 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +69 -0
- data/_layouts/privacyPolicy.html +421 -0
- data/_layouts/termAndCondition.html +421 -0
- data/_layouts/wordMeaning.html +107 -0
- data/assets/css/HomePageblog.css +154 -0
- data/assets/css/about.css +51 -0
- data/assets/css/advancedFilter.css +134 -0
- data/assets/css/blog.css +481 -0
- data/assets/css/feature.css +67 -0
- data/assets/css/footer.css +94 -0
- data/assets/css/home.css +186 -0
- data/assets/css/news.css +59 -0
- data/assets/css/style.css +374 -0
- data/assets/css/wordGroup.css +62 -0
- data/assets/images/Ankita.webp +0 -0
- data/assets/images/Anushka.webp +0 -0
- data/assets/images/Arjyahi.webp +0 -0
- data/assets/images/Nikita.webp +0 -0
- data/assets/images/alka.webp +0 -0
- data/assets/images/angle-arrow-down.svg +43 -0
- data/assets/images/bg_elements.png +0 -0
- data/assets/images/footer.png +0 -0
- data/assets/images/footer2-bg.webp +0 -0
- data/assets/images/keshav.webp +0 -0
- data/assets/images/left_obj_01.png +0 -0
- data/assets/images/left_obj_02.png +0 -0
- data/assets/images/loading.gif +0 -0
- data/assets/images/next.webp +0 -0
- data/assets/images/paavan.webp +0 -0
- data/assets/images/prev.webp +0 -0
- data/assets/images/rating.webp +0 -0
- data/assets/images/right.png +0 -0
- data/assets/images/right.svg +38 -0
- data/assets/images/right2.svg +38 -0
- data/assets/images/right3.svg +38 -0
- data/assets/images/right_obj_01.png +0 -0
- data/assets/images/word-games-logo.svg +52 -0
- data/assets/images/yellow_bg.png +0 -0
- data/assets/js/TopScroll.js +8 -0
- data/assets/js/X-letter.js +200 -0
- data/assets/js/advancedFilter.js +5 -0
- data/assets/js/advancedFilter2.js +5 -0
- data/assets/js/advancedFilter3.js +2 -0
- data/assets/js/manifest.json +17 -0
- data/assets/js/scrabbleDictonary.js +162 -0
- data/assets/js/serviceworker.js +42 -0
- data/assets/js/wordScrabble.js +363 -0
- metadata +198 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
.rowHeight3 {
|
|
2
|
+
margin: 300px 0 150px 0;
|
|
3
|
+
}
|
|
4
|
+
.blog {
|
|
5
|
+
margin-top: -80px;
|
|
6
|
+
}
|
|
7
|
+
.blog img {
|
|
8
|
+
width: 420px;
|
|
9
|
+
position: absolute;
|
|
10
|
+
right: -15px;
|
|
11
|
+
height: 700px;
|
|
12
|
+
z-index: -1;
|
|
13
|
+
}
|
|
14
|
+
.anchor_link {
|
|
15
|
+
text-decoration: none !important;
|
|
16
|
+
color: #343a40 !important;
|
|
17
|
+
}
|
|
18
|
+
.anchor_link:hover {
|
|
19
|
+
transition: all 0.5s linear;
|
|
20
|
+
color: #000 !important;
|
|
21
|
+
}
|
|
22
|
+
.anchor_link .card-title {
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
font-size: 22px;
|
|
25
|
+
line-height: 1.3;
|
|
26
|
+
}
|
|
27
|
+
.text_size {
|
|
28
|
+
color: rgba(0, 0, 0, 0.44);
|
|
29
|
+
font-size: 15px;
|
|
30
|
+
line-height: 1.6;
|
|
31
|
+
font-weight: 400;
|
|
32
|
+
}
|
|
33
|
+
.section-title {
|
|
34
|
+
margin: 20px 0;
|
|
35
|
+
}
|
|
36
|
+
.section-title h2 {
|
|
37
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
|
38
|
+
margin-bottom: 25px;
|
|
39
|
+
font-weight: 700;
|
|
40
|
+
font-size: 2rem;
|
|
41
|
+
margin-bottom: 27px;
|
|
42
|
+
}
|
|
43
|
+
.section-title span {
|
|
44
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.44);
|
|
45
|
+
display: inline-block;
|
|
46
|
+
padding-bottom: 20px;
|
|
47
|
+
margin-bottom: -1px;
|
|
48
|
+
}
|
|
49
|
+
.explore {
|
|
50
|
+
color: #fff;
|
|
51
|
+
margin-bottom: 100px;
|
|
52
|
+
margin-top: 60px;
|
|
53
|
+
width: 100%;
|
|
54
|
+
background: repeating-linear-gradient(
|
|
55
|
+
45deg,
|
|
56
|
+
rgb(27, 27, 27) 0px,
|
|
57
|
+
rgb(27, 27, 27) 97px,
|
|
58
|
+
rgb(24, 24, 24) 97px,
|
|
59
|
+
rgb(24, 24, 24) 194px,
|
|
60
|
+
rgb(20, 20, 20) 194px,
|
|
61
|
+
rgb(20, 20, 20) 291px
|
|
62
|
+
);
|
|
63
|
+
height: 250px;
|
|
64
|
+
align-items: center;
|
|
65
|
+
display: flex;
|
|
66
|
+
justify-content: space-around;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.explore ul {
|
|
70
|
+
display: flex;
|
|
71
|
+
list-style: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.cat {
|
|
75
|
+
display: inline-block;
|
|
76
|
+
padding: 5px 10px;
|
|
77
|
+
text-decoration: none !important;
|
|
78
|
+
color: #000 !important;
|
|
79
|
+
font-weight: 600;
|
|
80
|
+
font-size: 12px;
|
|
81
|
+
background: #fff;
|
|
82
|
+
border-radius: 15px;
|
|
83
|
+
margin: 0 15px;
|
|
84
|
+
}
|
|
85
|
+
.card-footer {
|
|
86
|
+
border: none;
|
|
87
|
+
}
|
|
88
|
+
.wrapfooter {
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
margin-bottom: 15px;
|
|
92
|
+
}
|
|
93
|
+
.wrapfooter img {
|
|
94
|
+
width: 35px;
|
|
95
|
+
height: 35px;
|
|
96
|
+
border-radius: 50%;
|
|
97
|
+
}
|
|
98
|
+
.wrapfooter .author-meta {
|
|
99
|
+
flex: 1 1 auto;
|
|
100
|
+
padding: 0 15px;
|
|
101
|
+
}
|
|
102
|
+
.wrapfooter .author-meta a {
|
|
103
|
+
font-size: 15px;
|
|
104
|
+
color: #000;
|
|
105
|
+
text-transform: capitalize;
|
|
106
|
+
}
|
|
107
|
+
.wrapfooter .span.post-read-more {
|
|
108
|
+
align-items: center;
|
|
109
|
+
display: inline-block;
|
|
110
|
+
margin-top: 8px;
|
|
111
|
+
}
|
|
112
|
+
.genric-btn2 {
|
|
113
|
+
background-image: -webkit-linear-gradient(110deg, #7b10ff 0, #974fff 100%);
|
|
114
|
+
color: #fff !important;
|
|
115
|
+
position: relative;
|
|
116
|
+
display: inline-block;
|
|
117
|
+
z-index: 1;
|
|
118
|
+
max-width: 100%;
|
|
119
|
+
padding: 0 34px;
|
|
120
|
+
font-size: 12px;
|
|
121
|
+
font-weight: 600;
|
|
122
|
+
text-transform: uppercase;
|
|
123
|
+
border: none;
|
|
124
|
+
text-align: center;
|
|
125
|
+
text-decoration: none !important;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
vertical-align: middle;
|
|
128
|
+
white-space: nowrap;
|
|
129
|
+
height: 50px;
|
|
130
|
+
line-height: 50px;
|
|
131
|
+
transition: 0.3s;
|
|
132
|
+
cursor: pointer;
|
|
133
|
+
-webkit-transition: all 0.3s ease 0s;
|
|
134
|
+
-moz-transition: all 0.3s ease 0s;
|
|
135
|
+
-o-transition: all 0.3s ease 0s;
|
|
136
|
+
transition: all 0.3s ease 0s;
|
|
137
|
+
}
|
|
138
|
+
@media (max-width: 1125px) {
|
|
139
|
+
.rowHeight3 {
|
|
140
|
+
margin: 120px -15px 0px -15px;
|
|
141
|
+
}
|
|
142
|
+
.blog {
|
|
143
|
+
background: #b641da;
|
|
144
|
+
padding: 10px 0;
|
|
145
|
+
}
|
|
146
|
+
.blog img {
|
|
147
|
+
display: none;
|
|
148
|
+
}
|
|
149
|
+
.blog_section {
|
|
150
|
+
margin-top: 0 !important;
|
|
151
|
+
margin-bottom: 0px;
|
|
152
|
+
padding: 0 25px !important;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.rowHeight {
|
|
2
|
+
margin: 300px 0 620px 0;
|
|
3
|
+
}
|
|
4
|
+
.about_content > .text {
|
|
5
|
+
width: 80%;
|
|
6
|
+
margin: 0 auto;
|
|
7
|
+
font-weight: 900;
|
|
8
|
+
font-size: 25px;
|
|
9
|
+
position: relative;
|
|
10
|
+
top: 100px;
|
|
11
|
+
}
|
|
12
|
+
.about {
|
|
13
|
+
margin-top: -80px;
|
|
14
|
+
}
|
|
15
|
+
.about img {
|
|
16
|
+
width: 420px;
|
|
17
|
+
position: absolute;
|
|
18
|
+
right: -15px;
|
|
19
|
+
height: 700px;
|
|
20
|
+
z-index: -1;
|
|
21
|
+
}
|
|
22
|
+
.content {
|
|
23
|
+
position: absolute;
|
|
24
|
+
right: 40px;
|
|
25
|
+
color: #fff;
|
|
26
|
+
top: 30px;
|
|
27
|
+
width: 250px;
|
|
28
|
+
padding: 0 10px;
|
|
29
|
+
font-size: 15px;
|
|
30
|
+
font-family: 'Poppins', sans-serif;
|
|
31
|
+
}
|
|
32
|
+
@media (max-width: 1125px) {
|
|
33
|
+
.rowHeight {
|
|
34
|
+
margin: 0px -15px 0px -15px;
|
|
35
|
+
}
|
|
36
|
+
.about {
|
|
37
|
+
background: #b641da;
|
|
38
|
+
padding: 10px 0;
|
|
39
|
+
}
|
|
40
|
+
.about img {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
.content {
|
|
44
|
+
position: static;
|
|
45
|
+
text-align: center;
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
.about_content {
|
|
49
|
+
margin: 0 !important;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
.Advancedbtn .filterButton {
|
|
2
|
+
background: #f8f9fa;
|
|
3
|
+
box-shadow: 0 0 3px #343a4063;
|
|
4
|
+
width: 190px;
|
|
5
|
+
border-radius: 10px;
|
|
6
|
+
outline: none;
|
|
7
|
+
border: none;
|
|
8
|
+
font-weight: 900;
|
|
9
|
+
font-size: 13px;
|
|
10
|
+
padding: 10px;
|
|
11
|
+
text-align: left;
|
|
12
|
+
z-index: 99;
|
|
13
|
+
}
|
|
14
|
+
.hide {
|
|
15
|
+
visibility: hidden;
|
|
16
|
+
}
|
|
17
|
+
.fillterWrapper {
|
|
18
|
+
display: block;
|
|
19
|
+
background: #fff;
|
|
20
|
+
position: absolute;
|
|
21
|
+
z-index: 999;
|
|
22
|
+
top: 155px;
|
|
23
|
+
right: 123px;
|
|
24
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
|
25
|
+
padding: 30px 15px;
|
|
26
|
+
border-radius: 15px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.fa-times {
|
|
30
|
+
position: absolute;
|
|
31
|
+
top: 12px;
|
|
32
|
+
right: 15px;
|
|
33
|
+
font-size: 15px;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
}
|
|
36
|
+
.fillterWrapper .same {
|
|
37
|
+
margin-bottom: 10px;
|
|
38
|
+
}
|
|
39
|
+
.fillterWrapper input[type='text'] {
|
|
40
|
+
border-radius: 15px;
|
|
41
|
+
width: 100%;
|
|
42
|
+
outline: none;
|
|
43
|
+
text-indent: 8px;
|
|
44
|
+
}
|
|
45
|
+
.sticky_nav {
|
|
46
|
+
position: sticky;
|
|
47
|
+
width: inherit;
|
|
48
|
+
top: 63px;
|
|
49
|
+
background-color: #fff;
|
|
50
|
+
z-index: 99;
|
|
51
|
+
}
|
|
52
|
+
.flex-row {
|
|
53
|
+
-ms-flex-direction: row !important;
|
|
54
|
+
flex-direction: row !important;
|
|
55
|
+
display: flex;
|
|
56
|
+
overflow: hidden;
|
|
57
|
+
margin: 0 35px;
|
|
58
|
+
}
|
|
59
|
+
.tab_link_wrapper {
|
|
60
|
+
display: flex;
|
|
61
|
+
width: 100%;
|
|
62
|
+
/* overflow: auto; */
|
|
63
|
+
justify-content: center;
|
|
64
|
+
background: #f8f9fa;
|
|
65
|
+
border-radius: 40px;
|
|
66
|
+
padding: 8px;
|
|
67
|
+
/* white-space: wrap; */
|
|
68
|
+
}
|
|
69
|
+
.tab_link {
|
|
70
|
+
font-size: 15px;
|
|
71
|
+
font-weight: 900;
|
|
72
|
+
margin: 0 5px;
|
|
73
|
+
padding-top: 5px;
|
|
74
|
+
border: none;
|
|
75
|
+
outline: none;
|
|
76
|
+
background-color: inherit;
|
|
77
|
+
}
|
|
78
|
+
a {
|
|
79
|
+
text-decoration: none !important;
|
|
80
|
+
}
|
|
81
|
+
.active-tab {
|
|
82
|
+
border-bottom: solid 2px black;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#next {
|
|
86
|
+
background: url('/assets/images/next.webp');
|
|
87
|
+
background-size: cover;
|
|
88
|
+
width: 21px;
|
|
89
|
+
object-fit: cover;
|
|
90
|
+
padding: 3px;
|
|
91
|
+
border: none;
|
|
92
|
+
position: absolute;
|
|
93
|
+
top: 12px;
|
|
94
|
+
right: 43px;
|
|
95
|
+
}
|
|
96
|
+
#prev {
|
|
97
|
+
background: url('/assets/images/prev.webp');
|
|
98
|
+
background-size: cover;
|
|
99
|
+
width: 21px;
|
|
100
|
+
object-fit: cover;
|
|
101
|
+
padding: 3px;
|
|
102
|
+
border: none;
|
|
103
|
+
position: absolute;
|
|
104
|
+
top: 12px;
|
|
105
|
+
left: 43px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@media (max-width: 768px) {
|
|
109
|
+
.Advancedbtn {
|
|
110
|
+
margin: 0;
|
|
111
|
+
height: 0;
|
|
112
|
+
width: 0;
|
|
113
|
+
}
|
|
114
|
+
.Advancedbtn .filterButton {
|
|
115
|
+
position: fixed;
|
|
116
|
+
bottom: 0;
|
|
117
|
+
width: 100%;
|
|
118
|
+
left: 0;
|
|
119
|
+
}
|
|
120
|
+
.fillterWrapper {
|
|
121
|
+
right: auto;
|
|
122
|
+
position: fixed;
|
|
123
|
+
left: 0;
|
|
124
|
+
top: 215px;
|
|
125
|
+
width: 100%;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@media (min-width: 576px) {
|
|
130
|
+
#containerWd {
|
|
131
|
+
max-width: 100% !important;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
/* close */
|
data/assets/css/blog.css
ADDED
|
@@ -0,0 +1,481 @@
|
|
|
1
|
+
/**********************************************/
|
|
2
|
+
/***************BLOG-CSS-STYLING *************/
|
|
3
|
+
/********************************************/
|
|
4
|
+
|
|
5
|
+
html {
|
|
6
|
+
scroll-behavior: smooth;
|
|
7
|
+
font-size: 62.5%;
|
|
8
|
+
}
|
|
9
|
+
body {
|
|
10
|
+
font-family: 'Open Sans', sans-serif !important;
|
|
11
|
+
}
|
|
12
|
+
a {
|
|
13
|
+
text-decoration: none !important;
|
|
14
|
+
}
|
|
15
|
+
img {
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.section_post {
|
|
20
|
+
margin-top: 100px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* logo styling */
|
|
24
|
+
.logo {
|
|
25
|
+
width: 50px;
|
|
26
|
+
border-radius: 50%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
header {
|
|
30
|
+
width: 100%;
|
|
31
|
+
position: relative;
|
|
32
|
+
}
|
|
33
|
+
.navbar {
|
|
34
|
+
width: 100%;
|
|
35
|
+
padding: 1.2rem 9% !important;
|
|
36
|
+
position: fixed;
|
|
37
|
+
top: 0;
|
|
38
|
+
left: 0;
|
|
39
|
+
z-index: 999;
|
|
40
|
+
}
|
|
41
|
+
.navbar-nav {
|
|
42
|
+
align-items: center;
|
|
43
|
+
}
|
|
44
|
+
.navbar-brand {
|
|
45
|
+
font-size: 2.2rem;
|
|
46
|
+
color: var(--txtColor) !important;
|
|
47
|
+
font-weight: 900;
|
|
48
|
+
}
|
|
49
|
+
.navbar-brand-image {
|
|
50
|
+
width: 80%;
|
|
51
|
+
display: inline-block;
|
|
52
|
+
max-width: 40px;
|
|
53
|
+
}
|
|
54
|
+
.navbar-dark .navbar-toggler {
|
|
55
|
+
outline: none !important;
|
|
56
|
+
}
|
|
57
|
+
.navbar-nav .nav-item {
|
|
58
|
+
padding: 0 10px;
|
|
59
|
+
}
|
|
60
|
+
.navbar-nav .nav-link:hover {
|
|
61
|
+
color: var(--txtColor) !important;
|
|
62
|
+
transition: all 0.2s linear;
|
|
63
|
+
-webkit-transition: all 0.2s linear;
|
|
64
|
+
-moz-transition: all 0.2s linear;
|
|
65
|
+
}
|
|
66
|
+
.nav-link {
|
|
67
|
+
text-decoration: none !important;
|
|
68
|
+
font-size: 16px;
|
|
69
|
+
color: gray !important;
|
|
70
|
+
}
|
|
71
|
+
/* close */
|
|
72
|
+
|
|
73
|
+
/* blogs-card title, content styling */
|
|
74
|
+
.anchor_link {
|
|
75
|
+
text-decoration: none !important;
|
|
76
|
+
color: #343a40 !important;
|
|
77
|
+
}
|
|
78
|
+
.anchor_link:hover {
|
|
79
|
+
transition: all 0.5s linear;
|
|
80
|
+
color: #000 !important;
|
|
81
|
+
}
|
|
82
|
+
.anchor_link .card-title {
|
|
83
|
+
font-weight: 600;
|
|
84
|
+
font-size: 22px;
|
|
85
|
+
line-height: 1.3;
|
|
86
|
+
}
|
|
87
|
+
.text_size {
|
|
88
|
+
color: rgba(0, 0, 0, 0.44);
|
|
89
|
+
font-size: 15px;
|
|
90
|
+
line-height: 1.6;
|
|
91
|
+
font-weight: 400;
|
|
92
|
+
}
|
|
93
|
+
/* close */
|
|
94
|
+
|
|
95
|
+
/* Blog-card-footer styling */
|
|
96
|
+
.card-footer {
|
|
97
|
+
border: none;
|
|
98
|
+
}
|
|
99
|
+
.wrapfooter {
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
margin-bottom: 15px;
|
|
103
|
+
}
|
|
104
|
+
.wrapfooter img {
|
|
105
|
+
width: 35px;
|
|
106
|
+
height: 35px;
|
|
107
|
+
border-radius: 50%;
|
|
108
|
+
}
|
|
109
|
+
.wrapfooter .author-meta {
|
|
110
|
+
flex: 1 1 auto;
|
|
111
|
+
padding: 0 15px;
|
|
112
|
+
}
|
|
113
|
+
.wrapfooter .author-meta a {
|
|
114
|
+
font-size: 15px;
|
|
115
|
+
color: #000;
|
|
116
|
+
text-transform: capitalize;
|
|
117
|
+
}
|
|
118
|
+
.wrapfooter .span.post-read-more {
|
|
119
|
+
align-items: center;
|
|
120
|
+
display: inline-block;
|
|
121
|
+
margin-top: 8px;
|
|
122
|
+
}
|
|
123
|
+
.post-date {
|
|
124
|
+
color: rgba(0, 0, 0, 0.44);
|
|
125
|
+
font-size: 13px;
|
|
126
|
+
}
|
|
127
|
+
/* close */
|
|
128
|
+
|
|
129
|
+
/* BLOG-Categories stlying */
|
|
130
|
+
.explore {
|
|
131
|
+
color: #fff;
|
|
132
|
+
margin-bottom: 100px;
|
|
133
|
+
margin-top: 60px;
|
|
134
|
+
width: 100%;
|
|
135
|
+
background: repeating-linear-gradient(
|
|
136
|
+
45deg,
|
|
137
|
+
rgb(27, 27, 27) 0px,
|
|
138
|
+
rgb(27, 27, 27) 97px,
|
|
139
|
+
rgb(24, 24, 24) 97px,
|
|
140
|
+
rgb(24, 24, 24) 194px,
|
|
141
|
+
rgb(20, 20, 20) 194px,
|
|
142
|
+
rgb(20, 20, 20) 291px
|
|
143
|
+
);
|
|
144
|
+
height: 250px;
|
|
145
|
+
align-items: center;
|
|
146
|
+
display: flex;
|
|
147
|
+
justify-content: space-around;
|
|
148
|
+
}
|
|
149
|
+
.explore ul {
|
|
150
|
+
display: flex;
|
|
151
|
+
list-style: none;
|
|
152
|
+
flex-wrap: wrap;
|
|
153
|
+
}
|
|
154
|
+
.cat {
|
|
155
|
+
display: inline-block;
|
|
156
|
+
padding: 5px 10px;
|
|
157
|
+
text-decoration: none !important;
|
|
158
|
+
color: #000 !important;
|
|
159
|
+
font-weight: 600;
|
|
160
|
+
font-size: 12px;
|
|
161
|
+
background: #fff;
|
|
162
|
+
border-radius: 15px;
|
|
163
|
+
margin: 0 15px;
|
|
164
|
+
}
|
|
165
|
+
/* close */
|
|
166
|
+
|
|
167
|
+
/* BLOG-alertbar stlying */
|
|
168
|
+
.alertbar {
|
|
169
|
+
box-shadow: 0 -3px 10px 0 rgb(0 0 0 / 8%);
|
|
170
|
+
position: fixed;
|
|
171
|
+
bottom: 0;
|
|
172
|
+
left: 0;
|
|
173
|
+
background-color: #fff;
|
|
174
|
+
width: 100%;
|
|
175
|
+
padding: 14px 0;
|
|
176
|
+
z-index: 1;
|
|
177
|
+
}
|
|
178
|
+
.alertbar form {
|
|
179
|
+
display: inline-block;
|
|
180
|
+
}
|
|
181
|
+
.alertbar input[type='email'] {
|
|
182
|
+
font-size: 0.85rem;
|
|
183
|
+
padding: 3px 40px 3px 10px;
|
|
184
|
+
border-top-left-radius: 3px;
|
|
185
|
+
border-bottom-left-radius: 3px;
|
|
186
|
+
border: 1px solid #ddd;
|
|
187
|
+
border-right: 0;
|
|
188
|
+
margin-right: -10px;
|
|
189
|
+
height: 34px;
|
|
190
|
+
letter-spacing: 0.5px;
|
|
191
|
+
margin-left: 5px;
|
|
192
|
+
outline: 0;
|
|
193
|
+
}
|
|
194
|
+
.alertbar input[type='submit'] {
|
|
195
|
+
background-color: #1c9963;
|
|
196
|
+
border: 1px solid #1c9963;
|
|
197
|
+
color: #fff;
|
|
198
|
+
fill: #fff;
|
|
199
|
+
font-size: 12px;
|
|
200
|
+
border-radius: 0;
|
|
201
|
+
padding: 4px 10px;
|
|
202
|
+
border-top-right-radius: 3px;
|
|
203
|
+
border-bottom-right-radius: 3px;
|
|
204
|
+
font-weight: 600;
|
|
205
|
+
height: 34px;
|
|
206
|
+
letter-spacing: 0.5px;
|
|
207
|
+
cursor: pointer;
|
|
208
|
+
}
|
|
209
|
+
/* close */
|
|
210
|
+
|
|
211
|
+
/* Blog-Pages-Pagination stlying*/
|
|
212
|
+
.blog-pagination a,
|
|
213
|
+
.blog-pagination span {
|
|
214
|
+
padding: 7px 10px;
|
|
215
|
+
margin-left: -2px;
|
|
216
|
+
margin-right: -2px;
|
|
217
|
+
background-color: #ffffff;
|
|
218
|
+
display: inline-block;
|
|
219
|
+
text-decoration: none;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.blog-pagination a:hover {
|
|
223
|
+
background-color: #f1f1f1;
|
|
224
|
+
color: #333;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.blog-pagination {
|
|
228
|
+
text-align: center;
|
|
229
|
+
font-size: 14px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/* BLOG-Categories-PAGes styling */
|
|
233
|
+
.section-title h2 {
|
|
234
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
|
235
|
+
font-weight: 700;
|
|
236
|
+
font-size: 1.5rem;
|
|
237
|
+
margin-bottom: 27px;
|
|
238
|
+
}
|
|
239
|
+
.section-title span {
|
|
240
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.44);
|
|
241
|
+
display: inline-block;
|
|
242
|
+
padding-bottom: 20px;
|
|
243
|
+
margin-bottom: -1px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/***************************************************************/
|
|
247
|
+
/********************** post-layouts-styling *******************/
|
|
248
|
+
/***************************************************************/
|
|
249
|
+
|
|
250
|
+
/* left-sidebar-social-styling */
|
|
251
|
+
.post-content {
|
|
252
|
+
font-size: 20px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.socialIons {
|
|
256
|
+
position: sticky;
|
|
257
|
+
top: 100px;
|
|
258
|
+
}
|
|
259
|
+
.socialIons > .item-lists2 {
|
|
260
|
+
display: flex;
|
|
261
|
+
flex-direction: column;
|
|
262
|
+
width: 100%;
|
|
263
|
+
}
|
|
264
|
+
.socialIons > .item-lists2 > li {
|
|
265
|
+
list-style: none;
|
|
266
|
+
padding: 8px 0px;
|
|
267
|
+
margin: 0 auto;
|
|
268
|
+
}
|
|
269
|
+
.socialIons .item-lists2 li a {
|
|
270
|
+
color: rgba(95, 21, 21, 0.44);
|
|
271
|
+
fill: rgba(0, 0, 0, 0.44);
|
|
272
|
+
font-size: 15px;
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
text-decoration: none !important;
|
|
275
|
+
}
|
|
276
|
+
.socialIons > .item-lists2 > li i {
|
|
277
|
+
font-size: 18px;
|
|
278
|
+
color: rgba(0, 0, 0, 0.44);
|
|
279
|
+
fill: rgba(0, 0, 0, 0.44);
|
|
280
|
+
}
|
|
281
|
+
.sep {
|
|
282
|
+
height: 1px;
|
|
283
|
+
width: 20px;
|
|
284
|
+
background: #999;
|
|
285
|
+
margin: 3px auto;
|
|
286
|
+
}
|
|
287
|
+
.comments-count {
|
|
288
|
+
margin: 18px 25px;
|
|
289
|
+
text-align: center;
|
|
290
|
+
}
|
|
291
|
+
.comment_count {
|
|
292
|
+
font-size: 12px;
|
|
293
|
+
color: rgba(95, 21, 21, 0.44) !important;
|
|
294
|
+
fill: rgba(0, 0, 0, 0.44);
|
|
295
|
+
text-decoration: none !important;
|
|
296
|
+
}
|
|
297
|
+
/* close */
|
|
298
|
+
|
|
299
|
+
/* right-sidebar-styling-starts */
|
|
300
|
+
/* author bio styling.. */
|
|
301
|
+
.author_image .author-thumb {
|
|
302
|
+
width: 60px;
|
|
303
|
+
height: 60px;
|
|
304
|
+
object-fit: cover;
|
|
305
|
+
}
|
|
306
|
+
.author-meta .postName {
|
|
307
|
+
font-size: 18px !important;
|
|
308
|
+
color: rgba(0, 0, 0, 0.8) !important;
|
|
309
|
+
text-decoration: none !important;
|
|
310
|
+
font-family: 'Merriweather', serif;
|
|
311
|
+
}
|
|
312
|
+
.btn_follow {
|
|
313
|
+
margin-left: 5px;
|
|
314
|
+
margin-bottom: 10px;
|
|
315
|
+
border-color: #02b875;
|
|
316
|
+
color: #1c9963 !important;
|
|
317
|
+
padding: 3px 10px;
|
|
318
|
+
text-align: center;
|
|
319
|
+
border-radius: 999em;
|
|
320
|
+
font-size: 1.5rem;
|
|
321
|
+
display: inline-block;
|
|
322
|
+
border: 1px solid;
|
|
323
|
+
}
|
|
324
|
+
.author_bio {
|
|
325
|
+
font-family: 'Merriweather', serif;
|
|
326
|
+
color: rgba(0, 0, 0, 0.44);
|
|
327
|
+
font-size: 13px;
|
|
328
|
+
line-height: 20px;
|
|
329
|
+
}
|
|
330
|
+
/* close */
|
|
331
|
+
|
|
332
|
+
/* pagination-styling-postpages */
|
|
333
|
+
.pointerup i.fa {
|
|
334
|
+
color: #eaeaea;
|
|
335
|
+
}
|
|
336
|
+
.pointerup {
|
|
337
|
+
margin-bottom: -9px;
|
|
338
|
+
margin-left: 49%;
|
|
339
|
+
font-size: 30px;
|
|
340
|
+
}
|
|
341
|
+
.bottompagination span.navigation {
|
|
342
|
+
display: block;
|
|
343
|
+
font-size: 0.93rem;
|
|
344
|
+
padding: 15px 0 0 0;
|
|
345
|
+
text-align: center;
|
|
346
|
+
margin-bottom: 0rem;
|
|
347
|
+
color: #999;
|
|
348
|
+
border-top: 1px solid #ddd;
|
|
349
|
+
}
|
|
350
|
+
.pagination {
|
|
351
|
+
display: -ms-flexbox;
|
|
352
|
+
display: flex;
|
|
353
|
+
padding-left: 0;
|
|
354
|
+
list-style: none;
|
|
355
|
+
border-radius: 0.25rem;
|
|
356
|
+
display: block;
|
|
357
|
+
color: green;
|
|
358
|
+
font-size: 15px;
|
|
359
|
+
margin-bottom: 30px;
|
|
360
|
+
}
|
|
361
|
+
.pageUrl {
|
|
362
|
+
color: green;
|
|
363
|
+
font-size: 12px;
|
|
364
|
+
font-weight: 900;
|
|
365
|
+
text-decoration: none;
|
|
366
|
+
margin-right: 10px;
|
|
367
|
+
}
|
|
368
|
+
.pageUrl:hover {
|
|
369
|
+
text-decoration: none;
|
|
370
|
+
color: green;
|
|
371
|
+
}
|
|
372
|
+
.lunrsearchresult {
|
|
373
|
+
font-size: 15px;
|
|
374
|
+
}
|
|
375
|
+
.lunrsearchresult .title {
|
|
376
|
+
color: #d9230f;
|
|
377
|
+
}
|
|
378
|
+
.lunrsearchresult .url {
|
|
379
|
+
color: silver;
|
|
380
|
+
}
|
|
381
|
+
.lunrsearchresult a {
|
|
382
|
+
display: block;
|
|
383
|
+
color: #777;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.lunrsearchresult:hover,
|
|
387
|
+
.lunrsearchresult:focus {
|
|
388
|
+
text-decoration: none;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.lunrsearchresult:hover .title {
|
|
392
|
+
text-decoration: underline;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.close {
|
|
396
|
+
float: right;
|
|
397
|
+
font-size: 2rem;
|
|
398
|
+
font-weight: 700;
|
|
399
|
+
line-height: 1;
|
|
400
|
+
color: #000;
|
|
401
|
+
text-shadow: 0 1px 0 #fff;
|
|
402
|
+
opacity: 0.5;
|
|
403
|
+
border: none;
|
|
404
|
+
background: transparent;
|
|
405
|
+
}
|
|
406
|
+
.close:focus {
|
|
407
|
+
outline: none !important;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/* recent post heading stlye */
|
|
411
|
+
.recent_post_heading {
|
|
412
|
+
width: 100%;
|
|
413
|
+
font-size: 46px;
|
|
414
|
+
text-align: left;
|
|
415
|
+
font-weight: 800;
|
|
416
|
+
font-stretch: normal;
|
|
417
|
+
font-style: normal;
|
|
418
|
+
line-height: 1.24;
|
|
419
|
+
letter-spacing: normal;
|
|
420
|
+
color: rgb(17, 48, 78);
|
|
421
|
+
margin-bottom: 45px;
|
|
422
|
+
padding-top: 75px;
|
|
423
|
+
display: inline-block;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@media (max-width: 768px) {
|
|
427
|
+
.bd-search {
|
|
428
|
+
padding: 10px 25px;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
@media (max-width: 768px) {
|
|
433
|
+
.navbar-nav {
|
|
434
|
+
align-items: unset;
|
|
435
|
+
}
|
|
436
|
+
.nav-item {
|
|
437
|
+
padding: 0 !important;
|
|
438
|
+
}
|
|
439
|
+
.socialIons > .item-lists2 {
|
|
440
|
+
flex-direction: row;
|
|
441
|
+
align-items: center;
|
|
442
|
+
}
|
|
443
|
+
.socialIons > .item-lists2 > li {
|
|
444
|
+
padding-right: 30px;
|
|
445
|
+
margin: 0;
|
|
446
|
+
}
|
|
447
|
+
.sep {
|
|
448
|
+
margin: 0;
|
|
449
|
+
}
|
|
450
|
+
.author-meta {
|
|
451
|
+
padding-left: 15px;
|
|
452
|
+
}
|
|
453
|
+
.comments-count {
|
|
454
|
+
margin: 18px 0;
|
|
455
|
+
text-align: left;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.navbar {
|
|
459
|
+
padding-left: 7% !important;
|
|
460
|
+
padding-right: 7% !important;
|
|
461
|
+
}
|
|
462
|
+
.title,
|
|
463
|
+
.description {
|
|
464
|
+
width: 100% !important;
|
|
465
|
+
text-align: center;
|
|
466
|
+
}
|
|
467
|
+
.angle-arrow {
|
|
468
|
+
position: fixed;
|
|
469
|
+
bottom: 4px;
|
|
470
|
+
right: 32px;
|
|
471
|
+
top: auto;
|
|
472
|
+
z-index: 999;
|
|
473
|
+
}
|
|
474
|
+
.alertbar form {
|
|
475
|
+
display: block;
|
|
476
|
+
margin-top: 10px;
|
|
477
|
+
}
|
|
478
|
+
.small_description {
|
|
479
|
+
font-size: 25px;
|
|
480
|
+
}
|
|
481
|
+
}
|