diff --git a/fe/src/App.css b/fe/src/App.css index 3f91ccf..9482d9f 100644 --- a/fe/src/App.css +++ b/fe/src/App.css @@ -4,6 +4,17 @@ --color-dark: #000B25; --color-bg: #101010; --color-accent: #00A4DC; + --jf-gradient-color-primary-dark: #003c50; + --jf-gradient-color-secondary-dark: #3e2247; +} + +.mobile-keyboard-mock { + background-color: gray; + width: 100vw; + height: 300px; + position: absolute; + bottom: 0; + left: 0; } body { @@ -11,7 +22,26 @@ body { color: white; } +.app-container { + height: 100vh; + display: flex; + flex-direction: column; +} + +header { + width: calc(100vw - 30px); + margin: 0 auto; +} + +main { + flex-grow: 1; + background: linear-gradient(220deg, var(--jf-gradient-color-secondary-dark), var(--jf-gradient-color-primary-dark)); +} + h1 { + font-size: 3.2em; + line-height: 1.1; + margin: 0 0 15px; background: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary)); color: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; @@ -20,7 +50,6 @@ h1 { #root { max-width: 1920px; - padding: 0 15px 10px; text-align: center; } diff --git a/fe/src/App.tsx b/fe/src/App.tsx index fbcb75f..b90d2d4 100644 --- a/fe/src/App.tsx +++ b/fe/src/App.tsx @@ -17,15 +17,23 @@ function App() { return (