Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/src/components/SaveMap/SaveMap.module.css
rd565449 r0c6b92a 21 21 22 22 .saveMapButton { 23 background-color: #e67e22; 24 color: white; 23 width: 100%; 24 height: 50px; 25 background-color: #e67e22 !important; 26 color: #ffffff !important; 25 27 border: none; 26 border-radius: 5px; 28 border-radius: 8px; 29 font-size: 20px; 30 font-weight: bold; 27 31 cursor: pointer; 28 width: 8vw; 29 height: 2vw; 30 text-align: center; 32 display: flex; 33 justify-content: center; 34 align-items: center; 35 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 36 transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; 37 appearance: none; 38 -webkit-appearance: none; 31 39 } 32 40 33 41 .saveMapButton:hover { 34 background-color: #b35418; 42 background-color: #d2691e !important; 43 transform: scale(1.05); 44 box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); 45 } 46 47 .saveMapButton:active { 48 background-color: #b35418 !important; 35 49 transform: scale(0.98); 36 50 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
Note:
See TracChangeset
for help on using the changeset viewer.