7.7K views
1button { 2 appearance: none; 3 background-color: #FAFBFC; 4 border: 1px solid rgba(27, 31, 35, 0.15); 5 border-radius: 6px; 6 box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset; 7 box-sizing: border-box; 8 color: #24292E; 9 cursor: pointer; 10 display: inline-block; 11 font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; 12 font-size: 14px; 13 font-weight: 500; 14 line-height: 20px; 15 list-style: none; 16 padding: 6px 16px; 17 position: relative; 18 transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1); 19 user-select: none; 20 -webkit-user-select: none; 21 touch-action: manipulation; 22 vertical-align: middle; 23 white-space: nowrap; 24 word-wrap: break-word; 25} 26 27button:hover { 28 background-color: #F3F4F6; 29 text-decoration: none; 30 transition-duration: 0.1s; 31} 32 33button:disabled { 34 background-color: #FAFBFC; 35 border-color: rgba(27, 31, 35, 0.15); 36 color: #959DA5; 37 cursor: default; 38} 39 40button:active { 41 background-color: #EDEFF2; 42 box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset; 43 transition: none 0s; 44} 45 46button:focus { 47 outline: 1px transparent; 48} 49 50button:before { 51 display: none; 52} 53 54button:-webkit-details-marker { 55 display: none; 56}
e-coders
E - Coders (Aasheesh Agarwal)
Full-stack, Front-end, Back-end, Django, Python, Flask, Command-line, IT, Book writer, PHP, Scratch, Java, Markdown, Git
MIT License