Last active
June 12, 2018 10:08
-
-
Save sgssandhu/61c7d33289df9a989e2612c48f4dcf6b to your computer and use it in GitHub Desktop.
Microsoft Logo with CSS
This file contains 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
<div class="microsoft-logo"> | |
<div class="square red"></div> | |
<div class="square green"></div> | |
<div class="square blue"></div> | |
<div class="square yellow"></div> | |
</div> | |
<style> | |
.microsoft-logo{ | |
width:440px; | |
margin:20px auto; | |
} | |
.square { | |
width: 200px; | |
height: 200px; | |
margin:0 20px 20px 0; | |
float:left; | |
} | |
.square.red{background-color:#F35325;} | |
.square.green{background-color:#81BC06;} | |
.square.blue{background-color:#05A6F0;} | |
.square.yellow{background-color:#FFBA08;} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment