mirror of https://github.com/lxndrblz/anatole.git

Ayrton Ricardo
08.09.2021 e6bd017149455f7d01eaf060787e970ded89dd25
Fix cloudflare minification (#197)

* Change color 'black' to hex '#000000'
* Remove spaces from comment section
* Remove double semicolon

Co-authored-by: Alexander Bilz <mail@alexbilz.com>
3 files modified
10 ■■■■ changed files
assets/css/style.css 4 ●●●● patch | view | raw | blame | history
assets/css/style.rtl.css 4 ●●●● patch | view | raw | blame | history
assets/js/medium-zoom.js 2 ●●● patch | view | raw | blame | history
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 @@
.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;
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 @@
.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;
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());