1.3K views
1.playstore-button { 2 display: inline-flex; 3 align-items: center; 4 justify-content: center; 5 border: 2px solid #000; 6 border-radius: 9999px; 7 background-color: rgba(0, 0, 0, 1); 8 padding: 0.625rem 1.5rem; 9 text-align: center; 10 color: rgba(255, 255, 255, 1); 11 outline: 0; 12 transition: all .2s ease; 13 text-decoration: none; 14} 15 16.playstore-button:hover { 17 background-color: transparent; 18 color: rgba(0, 0, 0, 1); 19} 20 21.icon { 22 height: 1.5rem; 23 width: 1.5rem; 24} 25 26.texts { 27 margin-left: 1rem; 28 display: flex; 29 flex-direction: column; 30 align-items: flex-start; 31 line-height: 1; 32} 33 34.text-1 { 35 margin-bottom: 0.25rem; 36 font-size: 0.75rem; 37 line-height: 1rem; 38} 39 40.text-2 { 41 font-weight: 600; 42}
MIT License