Button by ZEzebra76966
#212121
1button { 2 border: none; 3} 4 5.c-button { 6 background: linear-gradient(140deg, rgba(75, 118, 200, 1) 0%, rgba(31, 70, 145, 1) 100%); 7 border-radius: 45px; 8 font-size: 25px; 9 text-align: left; 10 padding: 11px 0px 11px 0px; 11 border: 4px solid rgb(37, 37, 37) !important; 12 border-style: outset; 13 box-shadow: -6px -5px 18px rgba(255, 255, 255, 0.1); 14 cursor: pointer; 15} 16 17.c-button .c-main { 18 border-radius: 45px; 19 color: rgba(255, 255, 255, 1); 20 padding: 11px 25px 11px 2px; 21 box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0); 22 transition: all 0.5s ease-in-out; 23 border: 1px solid transparent; 24} 25 26.c-ico .c-blur { 27 background: linear-gradient(318deg, rgba(75, 118, 200, 1) 0%, rgba(31, 70, 145, 1) 100%); 28 border-radius: 100%; 29 margin-left: 0; 30 padding: 8px 23px; 31 filter: blur(1px); 32 text-align: center; 33} 34 35.c-ico { 36 position: relative; 37 margin-right: 20px; 38} 39 40.c-ico .ico-text { 41 position: absolute; 42 left: 50%; 43 top: 50%; 44 transform: translate(-50%, -50%); 45} 46 47/* Hovering */ 48 49.c-button .c-main:hover { 50 box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0.6); 51 border: 1px solid rgba(26, 26, 26,0.5); 52 color: rgba(255, 255, 255, 0.5); 53} 54
9.3K views
MIT License