Last active
August 29, 2015 14:08
-
-
Save GeorgeTzellis/34ab9fc6cc92d7153b21 to your computer and use it in GitHub Desktop.
Shapes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Shapes */ | |
section { | |
display: inline-block; | |
margin: 3em; | |
width: 100px; | |
height: 100px; | |
background: yellow; | |
box-shadow: 0 0 2px black; | |
} | |
.circle-radius-single { | |
border-radius: 50px; | |
} | |
.circle-radius-2-values { | |
border-radius: 0px 100px; | |
} | |
.circle-radius-4-values { | |
border-radius: 37px 10px 17px 43px; | |
} | |
.ellipse-radius-single { | |
border-radius: 13% / 46%; | |
} | |
.ellipse-radius-2-values { | |
border-radius: 15px 115px / 69px 200px; | |
} | |
.ellipse-radius-4-values { | |
border-radius: 37px 10px 17px 43px / 18px 5px 27px 9px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="circle-radius-single"></section> | |
<section class="circle-radius-2-values"></section> | |
<section class="circle-radius-4-values"></section> | |
<section class="ellipse-radius-2-values"></section> | |
<section class="ellipse-radius-single"></section> | |
<section class="ellipse-radius-4-values"></section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment