#e8e8e8
1.btn-save { 2 display: flex; 3 align-items: center; 4 justify-content: center; 5 padding: 10px 20px; 6 border: none; 7 border-radius: 4px; 8 background-color: #f2f2f2; 9 color: #333; 10 font-size: 16px; 11 font-weight: bold; 12 cursor: pointer; 13 transition: background-color 0.3s ease; 14} 15 16.btn-save:hover { 17 background-color: #ddd; 18} 19 20.icon { 21 width: 24px; 22 height: 24px; 23 margin-right: 8px; 24} 25 26.icon-path { 27 fill: #333; 28 transition: fill 0.3s ease; 29} 30 31.btn-save:hover .icon-path { 32 fill: #888; 33} 34
479 views
479 views
Comments
MIT License