<html>
<head>
<style>
.button {
padding: 25px;
font-size: 16px;
cursor: pointer;
font-size:2em;
color:gold;
background:repeating-linear-gradient(90deg,
white,
white 1px,
black 2px,
black 30px);
}
.button:hover{
background:repeating-linear-gradient(40deg,
black,
black 5px,
white 4px,
white 15px);
opacity:0.6;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
</style>
</head>
<body>
<button class="button">Button</button>
</body>
</html>