Skip to content

Instantly share code, notes, and snippets.

@dcardosods
Created July 12, 2013 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcardosods/5984620 to your computer and use it in GitHub Desktop.
Save dcardosods/5984620 to your computer and use it in GitHub Desktop.
Desafio CSS 04 - Bandeira da Turquia
/**
* Desafio CSS 04 - Bandeira da Turquia
*/
body {
margin: 0;
padding: 0;
}
body:after {
content: "";
background-color: #E30917;
width: 600px;
height: 400px;
display: block;
}
.turquia {
background-color: #FFF;
width: 200px;
height: 200px;
border-radius: 50%;
position: absolute;
top: 100px;
left: 112px;
}
.turquia:before {
content: "";
background-color: #E30917;
width: 81%;
height: 81%;
border-radius: 50%;
position: absolute;
right: -3%;
top: 9%;
}
.turquia:after {
content: "★";
background-color: transparent;;
font-size: 8em;
-webkit-font-smoothing: antialiased;
color: #FFF;
position: absolute;
right: -40%;
top: 13%;
-webkit-transform: rotate(55deg);
-moz-transform: rotate(55deg);
-ms-transform: rotate(55deg);
-o-transform: rotate(55deg);
transform: rotate(55deg);
}
<div class="turquia"></div>
// alert('Hello world!');
{"view":"split","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