Social Media Icons @import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; } *:focus, *:active { outline: none !important; -webkit-tap-highlight-color: transparent; } html, body { display: grid; height: 100%; width: 100%; font-family: "Poppins", sans-serif; place-items: center; background:...
Easy Glowing Web Card with HTML, CSS or JS
- October 18, 2023
- By Design my Poster
- 0 Comments
body { display: flex; margin: 0; padding: 0; min-height: 100vh; background: #444; justify-content: center; align-items: center; font-family: arial; } .container .card .face { width: 300px; height: 200px; transition: .4s; } .container .card .face.face1 { position: relative; background: #333;...