| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- effect
- image
- react
- css3
- 개발자
- IOS
- CSS
- 비전공 개발자
- html5
- 애니메이션
- ipad
- keyframes
- iPhone
- button
- 프론트엔드
- hover
- SWIFT
- iOS 개발자
- MAC
- 풀스택
- 자바스크립트
- xcode
- 비전공자
- HTML
- javascript
- jQuery
- 백엔드
- front-end
- Animation
- php
- Today
- Total
목록date (3)
비전공자 개발일기
Countdown Till 2023 00 Days 00 Hours 00 Minutes 00 Seconds :root { --color-white: #ffffff; --color-black: #202020; --color-glass: rgba(255, 255, 255, 0.05); --color-shadow: 0 0 25px rgba(0, 0, 0, 0.5); } * { padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; color: var(--color-white); } body { background: url(background-img.jpg); background-repeat: no-repeat; back..
DATE CALCULATOR How many days are there between two dates? (Change a date to automatically calculate the difference) Start date End date Time elapsed: h1 { font-size: 2.5em; font-weight: 700; text-align: center; } header > p { text-align: center; font-size: 1.5rem; font-weight: 700; } div { text-align: center; border: .1em solid #000; } p { font-size: 1.4rem; font-weight: 700; } body { backgroun..
* { margin: 0; padding: 0; box-sizing: border-box; } .container { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #EFEFEF; } .container .date { font-size: 24px; font-weight: 500; } .container .date#printTime { color: #E74C3C; } .container .date#printDate { color: #2ECC71; margin: 0 20px; } .container .date#printDay { color: #9B59B6; } let date = ..