Html <button class="corner-button"> <span>Click me</span> </button> Css html { box-sizing: border-box; height: 100% } *, *::before, *::after { box-sizing: inherit; } body { font-size: 10px; display: flex; align-items: center; justify-content: center; min-height: 100vh } // ^ resets / layout $bg : #2f2f2f; $fg: #06c17f; $border-width: .5rem; $corner-size: 3rem; $dur: .3s; body { background: $bg; } .corner-button { font-family: 'Lato', sans-serif; letter-spacing: .02rem; cursor: pointer; background: transparent; border: $border-width solid currentColor; padding: 1.5rem 2rem; font-size: 2.2rem; color: $fg; position: relative; transition: color $dur; &:hover { color: pink; &::before { width: 0; } &::after { height: 0; } } &:active { border-width: $border-width / 2; } ...
Umut Yurdugül tarafından yapılmış bir animasyon paylaşım sitesidir.