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 February 8, 2013 04:39
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body{
background: #ccc;
}
p{
background: black;
color: white;
@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;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 8, 2013 05:17
Testing keyframes
/**
* Testing keyframes
*/
div {
width: 40px; height: 40px;
background: red;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 12, 2013 08:42
exploring Animation
/* exploring Animation */
p{
background: blue;
display: block;
width: 200px;
height: 100px;
border-radius: 200px 200px 0 0;
margin:40px;
position: relative;
animation: movingi infinite 6s alternate;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 12, 2013 10:03
Random CSS snippets from css-tricks css page
/* Random CSS snippets from css-tricks css page */
@media screen
{
*,*:after,*:before{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
}
@aurelkurtula
aurelkurtula / dabblet.css
Created February 12, 2013 13:21
border images
/**
* border images
*/
p{
border:6px double orange ;
background: url("http://4.bp.blogspot.com/-H783FPL_dBM/Tvs9US9dEVI/AAAAAAAAAXg/LtMOjaryRdw/s1600/sweet_home.jpg") 40px ;
display:block;
width: 600px;
height: 300px;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 14, 2013 10:54
perspective (not done)
/**
* perspective (not done)
*/
#con
{
-webkit-perspective: 400;
-webkit-perspective-origin:150px 300px;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 19, 2013 21:54
border with dashes
/**
* border with dashes
*/
div{
width: 200px;
height: 200px;
border: 2px dashed black;
margin: 100px;
border-radius: 50%;
@aurelkurtula
aurelkurtula / dabblet.css
Created February 21, 2013 16:07
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
div{
width: 500px;
height:800px;
position: relative;
margin: 150px 0 0 250px;
z-index: 51;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 3, 2013 08:48
flipping image
/* flipping image */
img{
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}