Skip to content

Latest commit

History

History
50 lines (43 loc) 路 1.13 KB

credit.md

File metadata and controls

50 lines (43 loc) 路 1.13 KB

Links we used for the project

Typing text: https://css-tricks.com/snippets/css/typewriter-effect/

https://codepen.io/geoffgraham/pen/jrWwWM https://codepen.io/Gthibaud/pen/MqpmXE https://codemyui.com/retro-yes-no-popup-dialog-box/ https://codepen.io/Gthibaud/pen/MqpmXE great btns retro https://codepen.io/b1tn3r/pen/YjOzRv shadow inspitarion https://getcssscan.com/css-box-shadow-examples gradient https://webgradients.com/

draft

typewriter { color: #000; font-family: "retro-gaming"; overflow: hidden; /_ Ensures the content is not revealed until the animation / border-right: 0.15em solid orange; / The typwriter cursor / white-space: nowrap; / Keeps the content on a single line / margin: 0 auto; / Gives that scrolling effect as the typing happens / letter-spacing: 0.15em; / Adjust as needed _/ animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite; }

/_ The typing effect _/ @keyframes typing { from { width: 0; } to { width: 100%; } }

/_ The typewriter cursor effect _/ @keyframes blink-caret { from, to { border-color: transparent; } 50% { border-color: orange; } }

https://sebhastian.com/setinterval-react/