-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b41872
commit 67300d8
Showing
9 changed files
with
109 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,60 @@ | ||
#nav { | ||
background-color: aliceblue; | ||
padding: 20px; | ||
background-color: var(--header-rgb); | ||
color: var(--header-foreground); | ||
padding: 20px; | ||
flex-shrink: 0; | ||
} | ||
|
||
#navLine { | ||
display: flex; | ||
flex-direction: row; | ||
height: auto; | ||
} | ||
|
||
.navLink { | ||
padding: 8px; | ||
display: inline-block; | ||
margin: auto 0 auto 0; | ||
} | ||
|
||
.navLeft { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.navRight { | ||
display: flex; | ||
justify-content: center; | ||
margin-left: auto; | ||
} | ||
|
||
#navTitle { | ||
font-size: 20px; | ||
font-weight: bold; | ||
padding: 8px; | ||
display: inline-block; | ||
} | ||
|
||
.main { | ||
padding: 20px 80px; | ||
} | ||
display: flex; | ||
flex-direction: row; | ||
height: auto; | ||
} | ||
|
||
.navLink { | ||
padding: 8px; | ||
display: inline-block; | ||
margin: auto 0 auto 0; | ||
} | ||
|
||
.navLeft { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.navRight { | ||
display: flex; | ||
justify-content: center; | ||
margin-left: auto; | ||
} | ||
|
||
#navTitle { | ||
font-size: 20px; | ||
font-weight: bold; | ||
padding: 8px; | ||
display: inline-block; | ||
color: var(--highlight); | ||
} | ||
|
||
#body { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
} | ||
|
||
#main { | ||
padding: 20px 100px; | ||
flex: 1 0 auto; | ||
} | ||
|
||
#footer { | ||
flex-shrink: 0; | ||
height: 100px; | ||
background-color: var(--highlight-weak); | ||
padding: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
text-align: center; | ||
white-space: pre-line; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
// nextjs | ||
import Link from 'next/link' | ||
|
||
// style | ||
import styles from './page.module.css'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export const metadata = { | ||
title: 'Next.js', | ||
description: 'Generated by Next.js', | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body>{children}</body> | ||
</html> | ||
) | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// style | ||
import styles from './page.module.css'; | ||
|
||
export default function Home() { | ||
return ( | ||
<p>Arvid luktar bajs</p> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.icon { | ||
background-size: contain; | ||
display: inline-block; | ||
} | ||
|
||
.heartIcon { | ||
background-image: url('../images/heart-icon.svg'); | ||
width: 1em; | ||
height: 0.9em; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.