524 views
1.game-button { 2 background-color: #ff7979; 3 color: #fff; 4 border: none; 5 border-radius: 20px; 6 padding: 10px 20px; 7 font-size: 18px; 8 text-transform: uppercase; 9 letter-spacing: 2px; 10 font-weight: bold; 11 box-shadow: 2px 2px 10px #ff7979; 12 transition: all 0.2s ease-in-out; 13 display: flex; 14 align-items: center; 15 justify-content: center; 16 position: relative; 17} 18 19.play-icon { 20 width: 24px; 21 height: 24px; 22 fill: #fff; 23 margin-right: 10px; 24} 25 26.game-button:hover { 27 background-color: #2f3640; 28 color: #ff7979; 29 box-shadow: 2px 2px 20px #2f3640; 30 transform: translateY(-2px); 31} 32
MIT License