#212121
1button { 2 margin: 12px; 3 height: 50px; 4 width: 120px; 5 border-radius: 10px; 6 background: #333; 7 justify-content: center; 8 align-items: center; 9 box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444, inset -5px -5px 10px #222; 10 font-family: 'Damion', cursive; 11 border: none; 12 font-size: 16px; 13 color: rgb(161, 161, 161); 14 transition: 500ms; 15} 16 17button:hover { 18 box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #222, inset -5px -5px 10px #444; 19 color: #d6d6d6; 20 transition: 500ms; 21}
Comments
MIT License