7.2K views
1#bottone5 { 2 align-items: center; 3 background-color: #FFFFFF; 4 border: 1px solid rgba(0, 0, 0, 0.1); 5 border-radius: .25rem; 6 box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0; 7 box-sizing: border-box; 8 color: rgba(0, 0, 0, 0.85); 9 cursor: pointer; 10 display: inline-flex; 11 font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif; 12 font-size: 16px; 13 font-weight: 600; 14 justify-content: center; 15 line-height: 1.25; 16 min-height: 3rem; 17 padding: calc(.875rem - 1px) calc(1.5rem - 1px); 18 text-decoration: none; 19 transition: all 250ms; 20 user-select: none; 21 -webkit-user-select: none; 22 touch-action: manipulation; 23 vertical-align: baseline; 24 width: auto; 25} 26 27#bottone5:hover, 28#bottone5:focus { 29 border-color: rgba(0, 0, 0, 0.15); 30 box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px; 31 color: rgba(0, 0, 0, 0.65); 32} 33 34#bottone5:hover { 35 transform: translateY(-1px); 36} 37 38#bottone5:active { 39 background-color: #F0F0F1; 40 border-color: rgba(0, 0, 0, 0.15); 41 box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px; 42 color: rgba(0, 0, 0, 0.65); 43 transform: translateY(0); 44}
Custyyyy
Custy
MIT License