<h3></h3>
<div class="flag central_african"></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;
}
.central_african {
background: linear-gradient(
#253a7d 25%,
#fff 25%,
#fff 50%,
#2a9747 50%,
#2a9747 75%,
#fdcd0a 0
);
}
.central_african::before {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 100%;
background-color: #d31f35;
}
.central_african::after {
content: "";
position: absolute;
height: 40px;
width: 40px;
margin: 5px 25px;
clip-path: polygon(
50% 0%,
61% 35%,
98% 35%,
68% 57%,
79% 91%,
50% 70%,
21% 91%,
32% 57%,
2% 35%,
39% 35%
);
background-color: #fdcd0a;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.