Skip to content

Instantly share code, notes, and snippets.

View pauliusef's full-sized avatar

Paulius Friedt pauliusef

View GitHub Profile
@pauliusef
pauliusef / gist:c7bcc96481fb3113cc78ae1246901e6f
Created August 15, 2017 09:16
Select every second line in Sublime
Search for : (.*(\n|$)){2}
alt+R - to toggle regular expression search
alt+ENTER - to select all results
@pauliusef
pauliusef / input_style.css
Created February 8, 2016 17:26
Input styling
a,button,input {
-ms-touch-action: none!important
}
input,textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}