#212121
1.appstore-button { 2 display: flex; 3 align-items: center; 4 justify-content: center; 5 padding: 10px 12px; 6 border: 3px solid rgb(189, 189, 189); 7 background-color: rgb(15, 15, 15); 8 border-radius: 15px; 9 gap: 5px; 10 cursor: pointer; 11 transition: all 0.3s; 12 box-shadow: 0px 0px 100px -30px rgb(255, 255, 255); 13} 14.appstore-button svg { 15 width: 45px; 16} 17.appstore-button svg path { 18 fill: white; 19 transition: all 0.3s; 20} 21.button-text { 22 display: flex; 23 flex-direction: column; 24 align-items: flex-start; 25 justify-content: center; 26 color: white; 27 transition: all 0.3s; 28} 29.top-text { 30 font-size: 13px; 31 font-weight: 600; 32} 33.bottom-text { 34 font-size: 24px; 35 font-weight: 600; 36} 37 38.appstore-button:hover { 39 background-color: rgb(236, 236, 236); 40 border: 3px solid rgb(138, 138, 138); 41} 42.appstore-button:hover .button-text { 43 color: black; 44} 45.appstore-button:hover svg path { 46 fill: black; 47} 48
177 views
177 views
Comments
MIT License