You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1005 B
HTML
42 lines
1005 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
html {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body {
|
|
min-height: 100%;
|
|
padding: 5vmin;
|
|
margin: 0;
|
|
background-image: linear-gradient(45deg, #F003,#0F03,#00F3);
|
|
background-size: 10vw 10vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<style type="text/css">
|
|
.coupon {
|
|
width: 240px;
|
|
height: 100px;
|
|
margin-top: 15px;
|
|
background-color: #F00;
|
|
-webkit-mask-image: radial-gradient(circle at left center, transparent 5px, red 6px);
|
|
mask-image: radial-gradient(circle at left center, transparent 5px, red 6px);
|
|
-webkit-mask-size: 100% 20px;
|
|
mask-size: 100% 20px;
|
|
-webkit-mask-position: left;
|
|
mask-position: left;
|
|
-webkit-mask-repeat: repeat-y;
|
|
mask-repeat: repeat-y;
|
|
box-shadow: 0 0 10px #000;
|
|
|
|
}
|
|
</style>
|
|
<div class="coupon"></div>
|
|
</body>
|
|
</html> |