-
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
95eee7e
commit 1967281
Showing
15 changed files
with
95 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
import '../css/App.css'; | ||
import AppBar from './AppBar'; | ||
import AppBody from './AppBody'; | ||
|
||
const App = () => { | ||
return ( | ||
<div id='app'> | ||
<AppBar /> | ||
<AppBody /> | ||
</div> | ||
); | ||
} | ||
|
||
export default App; |
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,11 @@ | ||
import '../css/AppBar.css'; | ||
|
||
const AppBar = () => { | ||
return ( | ||
<header id='appBar'> | ||
Start | ||
</header> | ||
); | ||
}; | ||
|
||
export default AppBar; |
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 @@ | ||
import '../css/AppBody.css'; | ||
|
||
const AppBody = () => { | ||
return ( | ||
<article id='appBody'> | ||
</article> | ||
); | ||
}; | ||
|
||
export default AppBody; |
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 @@ | ||
#app { | ||
width: 100%; | ||
height: 100%; | ||
position: fixed; | ||
background: var(--primary-dark-mode-color); | ||
display: flex; | ||
flex-direction: column; | ||
} |
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,3 @@ | ||
#appBar { | ||
background: pink; | ||
} |
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,5 @@ | ||
#appBody { | ||
flex: 1; | ||
background: lightgreen; | ||
opacity: 0.3; | ||
} |
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,41 @@ | ||
:root { | ||
--primary-dark-mode-color: #181818; | ||
--primary-light-mode-color: #EDE6D6; | ||
} | ||
|
||
/* Regular font. */ | ||
@font-face { | ||
font-family: 'Iosevka'; | ||
src: url('../../assets/fonts/Iosevka-Regular.ttf') format('truetype'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
/* Italic font. */ | ||
@font-face { | ||
font-family: 'Iosevka'; | ||
src: url('../../assets/fonts/Iosevka-Italic.ttf') format('truetype'); | ||
font-weight: normal; | ||
font-style: italic; | ||
} | ||
|
||
/* Bold font. */ | ||
@font-face { | ||
font-family: 'Iosevka'; | ||
src: url('../../assets/fonts/Iosevka-Bold.ttf') format('truetype'); | ||
font-weight: bold; | ||
font-style: normal; | ||
} | ||
|
||
body { | ||
/* Disable default HTML margin. */ | ||
margin: 0; | ||
|
||
/* Default font and font color. */ | ||
font-family: 'Iosevka'; | ||
color: var(--primary-light-mode-color); | ||
|
||
/* Smooth text. */ | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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