Compare commits

..

No commits in common. "ee946d3786d1f12d8231fbf8307d40d5a1dc0ba1" and "eb3a8ad946f46720efc2a4bfff935f0f18ab723f" have entirely different histories.

3 changed files with 2 additions and 30 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 KiB

View File

@ -1,39 +1,12 @@
#cv body { body {
background-color: lightgrey; background-color: lightgrey;
} }
.background {
position: fixed;
width: 100%;
height: 100vh;
top: 0;
z-index: -10;
}
@media screen and (min-width: 1400px) {
.background {
background: url("/background.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: normal, normal;
z-index: -10;
}
.main-container {
margin-top: 10rem;
margin-bottom: 15rem;
border: 1px solid lightgray;
border-radius: 5px;
}
}
.main-container { .main-container {
background-color: white; background-color: white;
padding-top: 1rem; padding-top: 1rem;
padding-bottom: 0.2rem; padding-bottom: 0.2rem;
z-index: 1;
transition: 0.5s;
} }
.main-container .photo { .main-container .photo {

View File

@ -21,9 +21,8 @@ export default function RootLayout({
children: React.ReactNode children: React.ReactNode
}) { }) {
return ( return (
<html lang="en" id="cv"> <html lang="en">
<body className={inter.className}> <body className={inter.className}>
<div className='background'></div>
<PersonProvider> <PersonProvider>
{children} {children}
</PersonProvider> </PersonProvider>