Skip to content

fa7ad/flag-css-bd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flag-css-bd

Bangladeshi Flag Using CSS

Clone and open the html page for a preview

To use in a project

  • Clone the repo
  • Import the mixin (flag.scss)
  • Create your markup
<div id="flag_element">
  <div class="base">
    <div class="circle"></div>  
  </div>
</div>
  • @include the mixin in your main sass file
#flag_element{
 @include flag(400px /* Width for your flag */); 
}