diff --git a/index.html b/index.html index cc1b4f3..89d5bf7 100644 --- a/index.html +++ b/index.html @@ -17,9 +17,12 @@

Projekt SPIN

Projekt SPIN – Spolupráce a inovace – vznikl z iniciativy katedry matematiky a didaktitky matematiky a katedry preprimární a primární pedagogiky PedF UK za podpory Nadace České spořitelny. Jeho hlavním cílem je zkvalitnit a inovovat přípravu budoucích učitelů prvního stupně. Největší důraz se klade na propojovaní teorie a praxe, například prostřednictvím tandemové výuky v rámci vysokoškolských kurzů, práce s čerstvými absolventy nebo tutoringu.

- Arrow + + Arrow +
-
+
+

Lorem Ipsum

diff --git a/style.css b/style.css index c3073ee..3c8db6f 100644 --- a/style.css +++ b/style.css @@ -1,9 +1,15 @@ +:root { + --width: 1000px; +} + @font-face { font-family: montserrat; src: url(fnt/montserrat-light.ttf) format("truetype"); } + * { box-sizing: border-box } +html { scroll-behavior: smooth } body { margin: 0; @@ -13,19 +19,19 @@ body { font-family: montserrat, sans; } +header, main { min-height: 100vh } + header { display: flex; flex-direction: column; align-items: center; justify-content: center; - min-height: 100vh; padding: 1rem; - font-size: 1.5rem; } header p { - max-width: 65rem; + max-width: var(--width); text-align: justify; } header .arrow { @@ -33,3 +39,9 @@ header .arrow { margin-top: 3em; } +main { + max-width: var(--width); + margin: 0 auto; + padding: 1em; +} +