Skip to content

Instantly share code, notes, and snippets.

View capgunmedia's full-sized avatar
🌴
On vacation

capgunmedia

🌴
On vacation
View GitHub Profile
.container_15 {
width: 1200px;
margin-left: auto;
margin-right: auto;
}
.grid_1 {
position: relative;
display: inline;
float: left;
@pauginer
pauginer / hype-slides
Last active October 10, 2020 15:12
Add this to the header of a Hype document to be able to move through scenes by using the keyboard arrows which may be convenient for creating presentations with Hype.
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
// http://mikemurko.com/general/jquery-keycode-cheatsheet/
var speed = 0.8; //transition speed
var transition = "push"; //types of transition: instant, fade, swap, push
var nextKeys= [39, 40, 34];
var prevKeys= [37, 38, 33];
$(function(){
@JoeKeikun
JoeKeikun / input_cursor_color
Last active June 7, 2022 12:08
How to change <input> input cursor color by css (webkit)
When I developed an app for ios by phonegap, I had a trouble in changing the <input> input cursor color.
but now, there is a solution for it:
---------------
<style>
input {
color: rgb(60, 0, 248); /* change [input cursor color] by this*/
text-shadow: 0px 0px 0px #D60B0B; /* change [input font] by this*/
-webkit-text-fill-color: transparent;