#e8e8e8
1.comic-button { 2 display: inline-block; 3 padding: 10px 20px; 4 font-size: 24px; 5 font-weight: bold; 6 text-align: center; 7 text-decoration: none; 8 color: #fff; 9 background-color: #ff5252; 10 border: 2px solid #000; 11 border-radius: 10px; 12 box-shadow: 5px 5px 0px #000; 13 transition: all 0.3s ease; 14} 15 16.comic-button:hover { 17 background-color: #fff; 18 color: #ff5252; 19 border: 2px solid #ff5252; 20 box-shadow: 5px 5px 0px #ff5252; 21} 22 23.comic-button:active { 24 background-color: #fcf414; 25 box-shadow: none; 26 transform: translateY(4px); 27} 28
5.8K views
5.8K views
Comments
Variations
1 MIT License