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 / dabblet.css
Created March 5, 2013 13:24
box with fine border shadow
/**
* box with fine border shadow
*/
/* got it from @LeaVerou via http://www.youtube.com/watch?v=3ikye7Qc7Ak&list=WL32E91C6871EAFE00 */
div{
overflow: scroll;
width: 200px;
height: 300px;
margin-top: 100px;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 5, 2013 13:32
center content without wrapper
/**
* center content without wrapper
* got it from @LeaVerou via http://www.youtube.com/watch?v=3ikye7Qc7Ak&list=WL32E91C6871EAFE00
*/
section{
width: 300px;
padding: 0 calc(50% - 150px);
}
/**
* text lines
* got it from @LeaVerou via http://www.youtube.com/watch?v=3ikye7Qc7Ak&list=WL32E91C6871EAFE00
*/
p{
width: 70%;
@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 March 5, 2013 18:25
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
div{
width: 200px;
height: 200px;
background: red;
margin: 80px;
border-radius: 20px;
@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 9, 2013 19:08
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
#c{
margin: 100px;}
.powerL{
width: 50px;
height: 50px;
background: red;
display:block;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 12, 2013 13:49
css half background
/**
* css half background
*/
body{
background:
-webkit-linear-gradient(
left, white, white 50%, #1f2024 50%, #1f2024
@aurelkurtula
aurelkurtula / dabblet.css
Created March 14, 2013 23:12
hover effect
/**
* hover effect
http://www.diesel.com/campaign/#/
*/
body{
background: gray;
}
#container{
width: 300px;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 18, 2013 18:17
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
ul{
padding: 0;
margin: 0;
height: 150px;
width: 400px;