| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
- keyframes
- IOS
- jQuery
- hover
- iOS 개발자
- 백엔드
- front-end
- CSS
- 풀스택
- image
- 애니메이션
- Animation
- 개발자
- SWIFT
- xcode
- effect
- javascript
- 비전공자
- html5
- button
- 비전공 개발자
- react
- 프론트엔드
- 자바스크립트
- ipad
- php
- iPhone
- css3
- HTML
- MAC
- Today
- Total
목록Notification (3)
비전공자 개발일기
Notifications 1 * { border: 0; box-sizing: border-box; margin: 0; padding: 0; } :root { --hue: 223; --bg: hsl(var(--hue),10%,90%); --fg: hsl(var(--hue),10%,10%); font-size: calc(40px + (60 - 40) * (100vw - 320px) / (1280 - 320)); } body, button { color: var(--fg); font: 1em/1.5 "DM Sans", sans-serif; } body { background: var(--bg); height: 100vh; display: grid; place-items: center; } .notificati..
Show Notification @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap'); * { box-sizing: border-box; } body { background-color: rebeccapurple; font-family: 'Poppins', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; overflow: hidden; margin: 0; } .btn { background-color: #ffffff; color: rebeccapurp..
4 100 30 .notification-wrapper { width: fit-content; text-align: center; } .heart-icon { font-size: 20px; position: relative; } .heart-icon::after { content: " "; position: absolute; inset: 0 0 auto auto; width: 5px; height: 5px; background-color: #5f49ec; border: 2px solid #151515; border-radius: 50%; opacity: 0; transform: scale(0); transition: transform .5s linear, opacity .5s; } .notificatio..