Skip to content

Commit

Permalink
feat: test neo brutalism
Browse files Browse the repository at this point in the history
  • Loading branch information
TidbitsJS committed Oct 26, 2023
1 parent e9c2a7b commit 9a133d5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/components/HomeInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ import { Link } from "react-router-dom";
const HomeInfo = ({ currentStage }) => {
if (currentStage === 1)
return (
<h1 className='text-2xl font-extrabold sm:leading-snug font-manrope text-center glassmorphism p-4 text-black-500'>
<h1 className='text-2xl sm:leading-snug font-manrope text-center neo-brutalism py-4 px-8 text-white'>
Hey, I'm
<span className='blue-gradient_text font-extrabold mx-2'>
Adrian Hajdin
</span>
<span className='font-extrabold mx-2 text-white'>Adrian Hajdin</span>
👋
<br />
Software Engineer from Croatia
Expand Down
12 changes: 11 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}

body {
font-family: "Poppins", sans-serif;
font-family: "Manrope", sans-serif;
}

body:has(.card[data-color="blue"]:hover) {
Expand Down Expand Up @@ -144,3 +144,13 @@ body:has(.card[data-color="green"]:hover) {
.block-container:hover > .btn-front {
transform: translateZ(80px) translateY(-5px) rotateX(15deg) rotateY(15deg);
}

/* Neo Brutalism */
.neo-brutalism {
background: #00a9ff;
position: relative;
border-radius: 10px;
border: #00a9ff;
box-shadow: 0.6vmin 0.6vmin #00a9ff, 1vmin 1vmin #0092db, 1vmin 1vmin #0092db,
0.65vmin 1vmin #0092db, 1vmin 0.65vmin #0092db;
}

0 comments on commit 9a133d5

Please sign in to comment.