mirror of
https://github.com/eugene-serb/wavelovers.git
synced 2023-09-09 23:41:16 +03:00
- changed tabs width from 4 to 2 in CSS.
- cleaned type-range styles in CSS. - updated sitemaps. - updated version.
This commit is contained in:
parent
a0544622ff
commit
a62b50785b
@ -2,7 +2,7 @@
|
|||||||
"name": "wavelovers",
|
"name": "wavelovers",
|
||||||
"description": "Wavelovers. Use your device vibration correctly. Make a massager out of a gamepad.",
|
"description": "Wavelovers. Use your device vibration correctly. Make a massager out of a gamepad.",
|
||||||
"keywords": [ "wavelovers", "gamepad-vibrator", "gamepad-test-tool", "gamepad-vibration-test-tool" ],
|
"keywords": [ "wavelovers", "gamepad-vibrator", "gamepad-test-tool", "gamepad-vibration-test-tool" ],
|
||||||
"version": "1.0.4",
|
"version": "1.0.5",
|
||||||
"license": "GNU GPL v3",
|
"license": "GNU GPL v3",
|
||||||
"homepage": "https://wavelovers.ru/",
|
"homepage": "https://wavelovers.ru/",
|
||||||
"author": {
|
"author": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ------------------------------ */
|
/* ------------------------------ */
|
||||||
/* Wavelovers styles */
|
/* Wavelovers styles */
|
||||||
/* version: dated 2022.08.12 */
|
/* version: dated 2022.08.28 */
|
||||||
/* author: Eugene Serb */
|
/* author: Eugene Serb */
|
||||||
/* ------------------------------ */
|
/* ------------------------------ */
|
||||||
|
|
||||||
@ -215,6 +215,7 @@ button, textarea, select, input {
|
|||||||
line-height: 1.382em;
|
line-height: 1.382em;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover, input:hover,
|
button:hover, input:hover,
|
||||||
textarea:hover, select:hover {
|
textarea:hover, select:hover {
|
||||||
border: 2px solid var(--color-link-hover);
|
border: 2px solid var(--color-link-hover);
|
||||||
@ -254,23 +255,23 @@ input[type=range] {
|
|||||||
input[type=range]::-webkit-slider-runnable-track {
|
input[type=range]::-webkit-slider-runnable-track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
cursor: pointer;
|
border: 0px solid #000101;
|
||||||
|
border-radius: 8px;
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
background: var(--color-b);
|
background: var(--color-b);
|
||||||
border-radius: 8px;
|
cursor: pointer;
|
||||||
border: 0px solid #000101;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]::-webkit-slider-thumb {
|
input[type=range]::-webkit-slider-thumb {
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
-webkit-appearance: none;
|
||||||
border: 0px solid #000000;
|
|
||||||
height: 16px;
|
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin-top: -4px;
|
||||||
|
border: 0px solid #000000;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
background: var(--color-a);
|
background: var(--color-a);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
-webkit-appearance: none;
|
|
||||||
margin-top: -4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]:focus::-webkit-slider-runnable-track {
|
input[type=range]:focus::-webkit-slider-runnable-track {
|
||||||
@ -280,20 +281,20 @@ input[type=range] {
|
|||||||
input[type=range]::-moz-range-track {
|
input[type=range]::-moz-range-track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
cursor: pointer;
|
border: 0px solid #000101;
|
||||||
animate: 0.2s;
|
border-radius: 8px;
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
background: var(--color-b);
|
background: var(--color-b);
|
||||||
border-radius: 8px;
|
cursor: pointer;
|
||||||
border: 0px solid #000101;
|
animate: 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]::-moz-range-thumb {
|
input[type=range]::-moz-range-thumb {
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
|
||||||
border: 0px solid #000000;
|
|
||||||
height: 16px;
|
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border: 0px solid #000000;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
background: var(--color-a);
|
background: var(--color-a);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@ -301,34 +302,34 @@ input[type=range] {
|
|||||||
input[type=range]::-ms-track {
|
input[type=range]::-ms-track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
|
border-width: 8px 0;
|
||||||
|
border-color: transparent;
|
||||||
|
background: transparent;
|
||||||
|
color: transparent;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
animate: 0.2s;
|
animate: 0.2s;
|
||||||
background: transparent;
|
|
||||||
border-color: transparent;
|
|
||||||
border-width: 8px 0;
|
|
||||||
color: transparent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]::-ms-fill-lower {
|
input[type=range]::-ms-fill-lower {
|
||||||
background: var(--color-b);
|
|
||||||
border: 0px solid #000101;
|
border: 0px solid #000101;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
|
background: var(--color-b);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]::-ms-fill-upper {
|
input[type=range]::-ms-fill-upper {
|
||||||
background: var(--color-b);
|
|
||||||
border: 0px solid #000101;
|
border: 0px solid #000101;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
|
background: var(--color-b);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=range]::-ms-thumb {
|
input[type=range]::-ms-thumb {
|
||||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
|
||||||
border: 0px solid #000000;
|
|
||||||
height: 16px;
|
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border: 0px solid #000000;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||||
background: var(--color-a);
|
background: var(--color-a);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@ -475,10 +476,10 @@ table, th, td {
|
|||||||
background: var(--color-content-item-background);
|
background: var(--color-content-item-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-item__header {
|
.content-item__header {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 540px) {
|
@media only screen and (min-width: 540px) {
|
||||||
.content-item {
|
.content-item {
|
||||||
@ -493,4 +494,3 @@ table, th, td {
|
|||||||
.link_hash {
|
.link_hash {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,43 +2,43 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/</loc>
|
<loc>https://wavelovers.ru/</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/custom</loc>
|
<loc>https://wavelovers.ru/custom</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/manual</loc>
|
<loc>https://wavelovers.ru/manual</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/diagnostic</loc>
|
<loc>https://wavelovers.ru/diagnostic</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/faq</loc>
|
<loc>https://wavelovers.ru/faq</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/about</loc>
|
<loc>https://wavelovers.ru/about</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wavelovers.ru/donate</loc>
|
<loc>https://wavelovers.ru/donate</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<sitemap>
|
<sitemap>
|
||||||
<loc>https://wavelovers.ru/sitemap-internal.xml</loc>
|
<loc>https://wavelovers.ru/sitemap-internal.xml</loc>
|
||||||
<lastmod>2022-08-27</lastmod>
|
<lastmod>2022-08-28</lastmod>
|
||||||
</sitemap>
|
</sitemap>
|
||||||
</sitemapindex>
|
</sitemapindex>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user