moved to own repo: https://github.com/helb/videogif
This file contains hidden or 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
div#tb-projects-bar, | |
div#tb-projects-bar *{ | |
-webkit-box-sizing:border-box; | |
-moz-box-sizing:border-box; | |
box-sizing:border-box; | |
margin:0; | |
padding:0; | |
border:none; | |
} |
This file contains hidden or 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
<link rel="stylesheet" type="text/css" href="//www.nic.cz/static/css/widgets/projects-bar.css"> | |
<script type="text/javascript" src="//www.nic.cz/static/js/widgets/projects-bar.js"></script> | |
<script type="text/javascript"> | |
window.onload = function() { | |
new nicWidgets.topBar("CS"); // nebo "EN"… | |
}; | |
</script> |
This file contains hidden or 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
$(document).click(function(event) { | |
var clickMarker = $("<div/>") | |
.css({ | |
width: '20px', | |
height: '20px', | |
borderRadius: '10px', | |
boxSizing: 'border-box', | |
backgroundColor: "#ff0037", | |
opacity: 0.85, | |
top: event.pageY - 10, |
This file contains hidden or 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
/* some parts are from Eric Meyer's CSS Reset <http://meyerweb.com/eric/tools/css/reset/> */ | |
/* license: public domain */ | |
*, *:before, *:after{ | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
border: none; |
This file contains hidden or 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
. |
This file contains hidden or 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
linters: | |
Indentation: | |
severity: warning | |
width: 4 | |
LeadingZero: | |
enabled: true | |
style: include_zero | |
NestingDepth: | |
enabled: true | |
max_depth: 4 |
This file contains hidden or 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
find: | |
(var|const) ([a-zA-Z]+) = require\((.+)\) | |
replace with: | |
import $2 from $3 |
This file contains hidden or 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
for i in `sed "s/@.*//" .meteor/versions`; do meteor update $i; done |
This file contains hidden or 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
rofi.color-enabled: true | |
rofi.color-window: #010101, #002b36, #000000 | |
rofi.color-normal: #010101, #eeeeee, #060606, #e2260b, #eee8d5 | |
rofi.color-active: #d64937, #fff5ce, #c93e2c, #f34e05, #fdf6e3 | |
rofi.color-urgent: #000000, #ff9a00, #010101, #ff2700, #fdf6e3 | |
rofi.font: Input Mono 10 | |
rofi.bw: 0 | |
rofi.padding: 2 | |
rofi.terminal: urxvtc | |
rofi.hide-scrollbar: true |
OlderNewer