<h3>Marshall Islands</h3>
<div class="flag marshall_islands">
<div class="marshall_islands__yellow"></div>
<div class="marshall_islands__white"></div>
<div class="marshall_islands__bottom_blue"></div>
<img src="https://imgur.com/YMkvsRV.png" width="120" alt="" />
</div>
* {
box-sizing: border-box;
margin: 0;
}
body {
width: 100%;
height: 100vh;
background-color: rgb(221, 239, 255);
display: grid;
place-items: center;
font-family: cursive;
font-weight: bold;
}
h3 {
position: absolute;
text-align: center;
top: 20px;
}
/* Main Style Stars from here */
.flag {
position: relative;
width: 300px;
height: 200px;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.marshall_islands {
background-color: #003893;
}
.marshall_islands > div {
position: absolute;
width: 100%;
}
.marshall_islands > img {
margin: 10px;
}
.marshall_islands__yellow,
.marshall_islands__white {
height: 30px;
top: 100px;
transform: scaleX(2) rotate(-50deg);
background-color: #dd7500;
}
.marshall_islands__white {
top: 125px;
transform: scaleX(2) rotate(-43deg);
background-color: white;
}
.marshall_islands__bottom_blue {
background-color: #003893;
height: 50%;
bottom: -55px;
transform: scaleX(2) rotate(-35deg);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.