Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1013 Bytes

22.md

File metadata and controls

39 lines (27 loc) · 1013 Bytes

📌 22

On April I should posted more but it was a busy month with a lot nice stuff happening in my personal and professional life. This last weekend happened the Front in Campinas first edition. It was a great conference! Probably soon the org will share the talks.

:octocat:

Simple CSS animation for UI interactions.

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeInFromTop {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

💬 Quotes

"If you don't like something, change it. If you can't change it, change your attitude. Don't complain." Maya Angelou

🔗 Links


🏠 back home