some blogging

This commit is contained in:
Nicholas Orlowsky 2022-10-23 12:42:04 -05:00
parent b9e96ebf9c
commit 48b46df249
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
8 changed files with 1582 additions and 8 deletions

11
src/components/Blog.css Normal file
View file

@ -0,0 +1,11 @@
.blog-card {
transition: 1s;
width: 80%;
background-color: #eee;
border-radius: 20px;
overflow: clip;
}
.blog-card:hover {
transform: translateY(-10px);
}