Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lxndrblz/anatole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyrton Ricardo <ayrtonricardo@hotmail.com>2021-05-08 20:09:03 +0300
committerGitHub <noreply@github.com>2021-05-08 20:09:03 +0300
commite6bd017149455f7d01eaf060787e970ded89dd25 (patch)
tree0502e75cf46c7b1ab8bf5134a480068a23f3f550
parentb6e1660d84612054d7141c588818319c404912c2 (diff)
Fix cloudflare minification (#197)v1.0.0
* Change color 'black' to hex '#000000' * Remove spaces from comment section * Remove double semicolon Co-authored-by: Alexander Bilz <mail@alexbilz.com>
-rw-r--r--assets/css/style.css4
-rw-r--r--assets/css/style.rtl.css4
-rw-r--r--assets/js/medium-zoom.js2
3 files changed, 5 insertions, 5 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 8b4c215..56e28bf 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -28,7 +28,7 @@
html[data-theme='dark'] {
--bg-color: #010408;
- --secondary-bg-color: rgb(56, 56, 56);;
+ --secondary-bg-color: rgb(56, 56, 56);
--heading-color: #c9d1d9;
--body-color: rgb(169, 169, 179);
--post-color: rgba(0, 0, 0, 0.44);
@@ -526,7 +526,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
- box-shadow: black;
+ box-shadow: #000000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
diff --git a/assets/css/style.rtl.css b/assets/css/style.rtl.css
index 5e0bfab..652f684 100644
--- a/assets/css/style.rtl.css
+++ b/assets/css/style.rtl.css
@@ -28,7 +28,7 @@
html[data-theme='dark'] {
--bg-color: #010408;
- --secondary-bg-color: rgb(56, 56, 56);;
+ --secondary-bg-color: rgb(56, 56, 56);
--heading-color: #c9d1d9;
--body-color: rgb(169, 169, 179);
--post-color: rgba(0, 0, 0, 0.44);
@@ -525,7 +525,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
- box-shadow: black;
+ box-shadow: #000000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
diff --git a/assets/js/medium-zoom.js b/assets/js/medium-zoom.js
index a190f27..9459f8a 100644
--- a/assets/js/medium-zoom.js
+++ b/assets/js/medium-zoom.js
@@ -1,4 +1,4 @@
-/*! medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom */
+/*!medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom*/
(function (global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = global || self,
global.mediumZoom = factory());