appscms-tools-theme 4.8.8 → 4.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/feature/.DS_Store +0 -0
- data/_data/feature/en/compress-pdf.json +7 -14
- data/_data/header/.DS_Store +0 -0
- data/_data/header/en/data.json +1098 -378
- data/_data/review/trustpilot.json +30 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/infographics/infographics.html +189 -99
- data/_includes/appscms/navbars/navbar.html +0 -72
- data/_includes/appscms/navbars/toolbar.html +4 -141
- data/_includes/appscms/reviews/trustpilot.html +305 -0
- data/_includes/review/trustpilot.html +922 -0
- data/_layouts/appscms-batch.html +1 -6
- data/_layouts/appscms-home.html +3 -1
- data/_layouts/feature-1.html +3 -1
- data/_layouts/home-1.html +1 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +0 -398
- data/assets/css/appscms-theme.css +752 -0
- data/assets/css/tools.css +363 -0
- data/assets/images/.DS_Store +0 -0
- data/assets/images/idea.svg +95 -3552
- data/assets/js/appscms-search.js +114 -85
- metadata +8 -2
data/assets/css/tools.css
CHANGED
@@ -1844,3 +1844,366 @@ ol li::marker {
|
|
1844
1844
|
.file-text {
|
1845
1845
|
font-size: 17px;
|
1846
1846
|
}
|
1847
|
+
|
1848
|
+
|
1849
|
+
.icon_box img {
|
1850
|
+
border-radius: 9px;
|
1851
|
+
padding: 4px;
|
1852
|
+
}
|
1853
|
+
|
1854
|
+
.search-container {
|
1855
|
+
display: flex;
|
1856
|
+
border: 1px solid #ccc;
|
1857
|
+
border-radius: 5px;
|
1858
|
+
overflow: hidden;
|
1859
|
+
height: 38px;
|
1860
|
+
width: 400px;
|
1861
|
+
background-color: white;
|
1862
|
+
position: relative;
|
1863
|
+
}
|
1864
|
+
|
1865
|
+
.search-input {
|
1866
|
+
flex: 1;
|
1867
|
+
border: none;
|
1868
|
+
padding: 12px 16px;
|
1869
|
+
font-size: 16px;
|
1870
|
+
outline: none;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
.search-input::placeholder {
|
1874
|
+
color: #888;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.search-button {
|
1878
|
+
background-color: var(--primary-color);
|
1879
|
+
border: none;
|
1880
|
+
padding: 0 16px;
|
1881
|
+
display: flex;
|
1882
|
+
align-items: center;
|
1883
|
+
justify-content: center;
|
1884
|
+
cursor: pointer;
|
1885
|
+
outline: none;
|
1886
|
+
border-radius: 0 !important;
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
.search-button svg {
|
1890
|
+
/* fill: #fff; */
|
1891
|
+
height: 20px;
|
1892
|
+
}
|
1893
|
+
|
1894
|
+
.search-button:active {
|
1895
|
+
background-color: #555;
|
1896
|
+
}
|
1897
|
+
.nav-search{
|
1898
|
+
position: relative;
|
1899
|
+
}
|
1900
|
+
.result-item{
|
1901
|
+
padding: 9px 12px;
|
1902
|
+
}
|
1903
|
+
.result-item a{
|
1904
|
+
color: #222325;
|
1905
|
+
}
|
1906
|
+
.searchbarResults{
|
1907
|
+
overflow: scroll;
|
1908
|
+
height: 60vh;
|
1909
|
+
background-color: #fff;
|
1910
|
+
border: 1px solid #e4e5e7;
|
1911
|
+
border-radius: 6px;
|
1912
|
+
-webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
1913
|
+
box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
1914
|
+
-webkit-box-sizing: border-box;
|
1915
|
+
box-sizing: border-box;
|
1916
|
+
color: #74767e;
|
1917
|
+
cursor: default;
|
1918
|
+
margin-top: 8px;
|
1919
|
+
padding: 12px;
|
1920
|
+
position: absolute;
|
1921
|
+
width: 100%;
|
1922
|
+
z-index: 101;
|
1923
|
+
display: none;
|
1924
|
+
}
|
1925
|
+
|
1926
|
+
|
1927
|
+
|
1928
|
+
.scroll-container {
|
1929
|
+
display: flex;
|
1930
|
+
align-items: center;
|
1931
|
+
background-color: #333;
|
1932
|
+
position: relative;
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
.scroll-left,
|
1936
|
+
.scroll-right {
|
1937
|
+
background-color: #4456f6f7;
|
1938
|
+
color: white;
|
1939
|
+
border: none;
|
1940
|
+
height: 40px;
|
1941
|
+
cursor: pointer;
|
1942
|
+
position: absolute;
|
1943
|
+
width: 40px;
|
1944
|
+
top: 50%;
|
1945
|
+
z-index: 100;
|
1946
|
+
transform: translateY(-50%);
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
.scroll-left {
|
1950
|
+
left: 0;
|
1951
|
+
}
|
1952
|
+
|
1953
|
+
.scroll-right {
|
1954
|
+
right: 0;
|
1955
|
+
}
|
1956
|
+
|
1957
|
+
.scroll-left:hover,
|
1958
|
+
.scroll-right:hover {
|
1959
|
+
background-color: #8691f6f7;
|
1960
|
+
}
|
1961
|
+
|
1962
|
+
.navbar {
|
1963
|
+
/* overflow-x: auto; */
|
1964
|
+
white-space: nowrap;
|
1965
|
+
flex-grow: 1;
|
1966
|
+
scroll-behavior: smooth;
|
1967
|
+
display: flex;
|
1968
|
+
}
|
1969
|
+
|
1970
|
+
.navbar ul {
|
1971
|
+
padding: 0;
|
1972
|
+
margin: 0;
|
1973
|
+
display: flex;
|
1974
|
+
list-style-type: none;
|
1975
|
+
}
|
1976
|
+
|
1977
|
+
.navbar li {
|
1978
|
+
display: inline;
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
|
1982
|
+
|
1983
|
+
.mobile-search-bar {
|
1984
|
+
position: relative;
|
1985
|
+
height: 100px;
|
1986
|
+
width: 100%;
|
1987
|
+
display: none;
|
1988
|
+
}
|
1989
|
+
|
1990
|
+
.mobile-search-container {
|
1991
|
+
display: flex;
|
1992
|
+
border: 1px solid #ccc;
|
1993
|
+
border-radius: 5px;
|
1994
|
+
overflow: hidden;
|
1995
|
+
height: 38px;
|
1996
|
+
margin: 20px 0px 20px 0px;
|
1997
|
+
background-color: white;
|
1998
|
+
position: relative;
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
.mobile-search-input {
|
2002
|
+
flex: 1;
|
2003
|
+
border: none;
|
2004
|
+
padding: 12px 16px;
|
2005
|
+
font-size: 16px;
|
2006
|
+
outline: none;
|
2007
|
+
}
|
2008
|
+
|
2009
|
+
.mobile-search-input::placeholder {
|
2010
|
+
color: #888;
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
.mobile-search-button {
|
2014
|
+
background-color: #000;
|
2015
|
+
border: none;
|
2016
|
+
padding: 0 16px;
|
2017
|
+
display: flex;
|
2018
|
+
align-items: center;
|
2019
|
+
justify-content: center;
|
2020
|
+
cursor: pointer;
|
2021
|
+
outline: none;
|
2022
|
+
}
|
2023
|
+
|
2024
|
+
.mobile-search-button svg {
|
2025
|
+
/* fill: #fff; */
|
2026
|
+
height: 20px;
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.mobile-search-button:active {
|
2030
|
+
background-color: #555;
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.mobile-nav-search {
|
2034
|
+
position: relative;
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.mobile-result-item {
|
2038
|
+
padding: 9px 12px;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.mobile-result-item a {
|
2042
|
+
color: #222325;
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
.mobile-searchbarResults {
|
2046
|
+
background-color: #fff;
|
2047
|
+
border: 1px solid #e4e5e7;
|
2048
|
+
border-radius: 6px;
|
2049
|
+
-webkit-box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2050
|
+
box-shadow: 0 17px 58px rgba(0, 0, 0, .08);
|
2051
|
+
-webkit-box-sizing: border-box;
|
2052
|
+
box-sizing: border-box;
|
2053
|
+
color: #74767e;
|
2054
|
+
cursor: default;
|
2055
|
+
margin-top: 8px;
|
2056
|
+
padding: 12px;
|
2057
|
+
position: fixed;
|
2058
|
+
margin-top: 42px;
|
2059
|
+
width: 244px;
|
2060
|
+
height: 400px;
|
2061
|
+
overflow-y: scroll;
|
2062
|
+
z-index: 101;
|
2063
|
+
display: none;
|
2064
|
+
}
|
2065
|
+
.trustpilot-container {
|
2066
|
+
background-color: #eeeeee;
|
2067
|
+
width: 100vw;
|
2068
|
+
|
2069
|
+
padding-top: 8rem;
|
2070
|
+
padding-bottom: 8rem;
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
.trustpilot-container a {
|
2074
|
+
text-decoration: none;
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
.trustpilot-h2 {
|
2078
|
+
font-size: 24px;
|
2079
|
+
text-align: center;
|
2080
|
+
font-weight: bold;
|
2081
|
+
}
|
2082
|
+
|
2083
|
+
.trustpilot-description {
|
2084
|
+
font-size: 15px;
|
2085
|
+
text-align: center;
|
2086
|
+
}
|
2087
|
+
|
2088
|
+
.review-container {
|
2089
|
+
display: flex;
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
|
2093
|
+
|
2094
|
+
.reviews {
|
2095
|
+
display: flex;
|
2096
|
+
overflow: hidden;
|
2097
|
+
}
|
2098
|
+
|
2099
|
+
.review-stars {
|
2100
|
+
display: flex;
|
2101
|
+
align-items: center;
|
2102
|
+
}
|
2103
|
+
|
2104
|
+
.review-stars svg {
|
2105
|
+
height: 18px;
|
2106
|
+
width: 18px;
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
.review-verified {
|
2110
|
+
margin-left: 5px;
|
2111
|
+
display: flex;
|
2112
|
+
align-items: center;
|
2113
|
+
font-size: 13px;
|
2114
|
+
color: #676767;
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
.review-text {
|
2118
|
+
color: #1a1a1a;
|
2119
|
+
font-size: 14px;
|
2120
|
+
display: -webkit-box;
|
2121
|
+
-webkit-line-clamp: 3;
|
2122
|
+
-webkit-box-orient: vertical;
|
2123
|
+
overflow: hidden;
|
2124
|
+
text-overflow: ellipsis;
|
2125
|
+
}
|
2126
|
+
|
2127
|
+
.review-title {
|
2128
|
+
font-weight: 600;
|
2129
|
+
color: #1a1a1a;
|
2130
|
+
font-size: 16px;
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
.reviewer-name {
|
2134
|
+
color: #646565;
|
2135
|
+
font-size: 14px;
|
2136
|
+
}
|
2137
|
+
|
2138
|
+
.trustpilot-arrow-left,
|
2139
|
+
.trustpilot-arrow-right {
|
2140
|
+
position: absolute;
|
2141
|
+
top: 30%;
|
2142
|
+
background-color: #fff;
|
2143
|
+
border: none;
|
2144
|
+
display: flex;
|
2145
|
+
align-items: center;
|
2146
|
+
justify-content: center;
|
2147
|
+
border-radius: 50%;
|
2148
|
+
padding: 2px;
|
2149
|
+
height: 30px;
|
2150
|
+
width: 30px;
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
.trustpilot-arrow-left svg,
|
2154
|
+
.trustpilot-arrow-right svg {
|
2155
|
+
color: #1a1a1a;
|
2156
|
+
height: 20px;
|
2157
|
+
width: 20px;
|
2158
|
+
}
|
2159
|
+
.trustpilot-arrow-left {
|
2160
|
+
left: -20px;
|
2161
|
+
}
|
2162
|
+
.trustpilot-arrow-right {
|
2163
|
+
right: 0;
|
2164
|
+
}
|
2165
|
+
.trustpilot-end{
|
2166
|
+
font-size: 15px;
|
2167
|
+
text-align: center;
|
2168
|
+
color: #1A1A1A;
|
2169
|
+
}
|
2170
|
+
.trustpilot-total-reviews,.trustpilot-rating{
|
2171
|
+
color: #000;
|
2172
|
+
font-weight: bold;
|
2173
|
+
}
|
2174
|
+
/* Styles for mobile devices (max-width: 767px) */
|
2175
|
+
@media only screen and (max-width: 1024px) {
|
2176
|
+
.review {
|
2177
|
+
flex: 0 0 calc(100% / 1);
|
2178
|
+
}
|
2179
|
+
}
|
2180
|
+
@media only screen and (max-width: 768px) {
|
2181
|
+
.trustpilot-arrow-left {
|
2182
|
+
left: 25px;
|
2183
|
+
}
|
2184
|
+
.trustpilot-arrow-right {
|
2185
|
+
right: 25px;
|
2186
|
+
}
|
2187
|
+
.review{
|
2188
|
+
padding: 0px 50px;
|
2189
|
+
}
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
.reviews {
|
2193
|
+
display: flex;
|
2194
|
+
overflow: hidden;
|
2195
|
+
/* width: 300px; Set to the width of one review card */
|
2196
|
+
transition: transform 0.3s ease;
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
.review {
|
2200
|
+
width: 300px; /* Set each review card width to match the `.reviews` container */
|
2201
|
+
flex-shrink: 0;
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
.reviews .row{
|
2205
|
+
text-align: left;
|
2206
|
+
}
|
2207
|
+
.list-item-dropdown .row{
|
2208
|
+
text-align: left;
|
2209
|
+
}
|
data/assets/images/.DS_Store
CHANGED
Binary file
|