I want to make invert header in Ionic , I have for the moment make like this Now
But I want to make a inverted border radius like this: Result I want
There is the actual css :
.holder {
position: relative;
width: 100%;
display: flex;
height: 35vh;
justify-content: center;
align-items: center;
flex-direction: column;
overflow: hidden;
}
.holder:before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #DC9265;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ECBC67, #F5C267);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #e9b081, #D58564);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border-radius: 0 0 50% 50%/0 0 100% 100%;
transform: scaleX(1.5);
}
Thanks