Skip to content

Instantly share code, notes, and snippets.

View aurelkurtula's full-sized avatar
🎯
Focusing

aurel kurtula aurelkurtula

🎯
Focusing
View GitHub Profile
@aurelkurtula
aurelkurtula / README-Template.md
Created September 6, 2018 09:12 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@aurelkurtula
aurelkurtula / dabblet.css
Created May 6, 2013 00:08
zig-zag background (SO)
/**
* zig-zag background (SO)
* CSS Zigzag Border with a Textured Background
*/
background: linear-gradient(#BCED91 49%, transparent 49%),
linear-gradient(-45deg, white 33%, transparent 33%) 0 50%,
white linear-gradient(45deg, white 33%, #BCED91 33%) 0 50%;
background-repeat: repeat-x;
background-size: 1px 100%, 40px 40px, 40px 40px;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 5, 2013 20:10
tooltip with inner shadow
/**
* tooltip with inner shadow
*/
div{
width: 200px;
height: 200px;
background: red;
margin: 80px;
border-radius: 20px;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 5, 2013 14:32 — forked from LeaVerou/dabblet.css
Typing animation with pure CSS.
/**
* Typing animation with pure CSS.
* Works best in browsers supporting the ch unit.
*/
@keyframes typing { from { width: 0; } /*width of the h1 as container */ }
@keyframes blink-caret { 50% { border-color: transparent; } }
h1 {
font: bold 200% Consolas, Monaco, monospace;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 8, 2013 04:57
a snipet from Gridify (simplified)
/**
* a snipet from Gridify (simplified)
* simplified version of
* http://dabblet.com/gist/3713619/
*/
html {
overflow: hidden;
min-height: 100%;
background: linear-gradient(dimgrey, black);
font: italic 90%/1.3 Georgia, serif;