Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Readme.md

Flag of Japan

Flag of Japan

Requirements

  • Aspect ratio: 2:3.
  • Circle is 3/5 the size of the flag.

Calculate Aspect ratio

Aspect ratio = height * ratioHeight / ratioWidth

Example

Flag ratio: 5:4

Flag height: 200px

.country-flag {
    width: calc(200px * 4 / 5);
}

Provided code

CSS

html,
body {
    margin: 0;
    padding: 0;
    background: black;
}

:root {
    --white: #FFFFFF;
    --red: #BC022C;
    --flag-height: 200px;
}