Css3 draws graphics

this kind of graphic painting clipboard.png

Css
Mar.28,2021

<style>
    div{
        width: 400px;
        height: 100px;
        border-radius: 10px;
        background: linear-gradient(-135deg,transparent 0,transparent 20%,red 0,red 100%),
                    linear-gradient(-45deg,transparent 0,transparent 20%,yellow 0,yellow 100%);
    }
</style>
</head>
<body>
<div></div>
</body>

try something like this

Menu