This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
at webpack settings: | |
plugins: [ | |
...plugins, | |
new SuggestCssHashLen({ | |
instance: MyShortCssClasses, | |
selectedHashLen: cssHashLen | |
}) | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @author denisx | |
# find iamges at folder and optimize them | |
# you need a key from https://tinypng.com/developers | |
# system dependence: jq, curl | |
# ---=== settings === --- | |
# you need a key from https://tinypng.com/developers | |
dev_key="xxx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
padding: 1em 3em; | |
} | |
ul, li, h2 { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
padding: 1em 3em; | |
} | |
ul, li, h2 { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global */ | |
.myClockJS { | |
margin: 2em; | |
} | |
.myClockJS b { | |
display: block; | |
width: 100%; | |
font-weight: normal; | |
} | |
.myClockJS .inner { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *************************************** */ | |
/* font by http://www.dafont.com/digital-7.font */ | |
@font-face { | |
font-family: 'digital-7'; | |
src: url('http://denisx.ru/fonts/digital-webfont.ttf') format('truetype'); | |
font-weight: normal; | |
font-style: normal; | |
} |