diff --git a/content/_index.cs.md b/content/_index.cs.md index 4202168..4538994 100644 --- a/content/_index.cs.md +++ b/content/_index.cs.md @@ -4,6 +4,9 @@ date: 2019-07-12T14:54:15+02:00 draft: false authors: [ "Greenscreener" ] --- +
+ Tyto stránky je zatím v aktivním vývoji. Je proto možné, že některé její části budou chybět a že se něco ještě v budoucnu změní. Děkujeme za pochopení. +
# Vítejte na stránkách Pátku Zatímco pátek je pátý den v týdnu, Pátek je skupina studentů, kteří se zajímají nejen o informatiku, ale také fyziku, elektrotechniku, radioamatérství, matematiku, biologii a vše co je zajímavé. Stejně jako se [pátečníci](https://cs.wikipedia.org/wiki/P%C3%A1te%C4%8Dn%C3%ADci) Karla Čapka scházeli v jeho vile každé páteční odpoledne, tak se také my scházíme každé páteční odpoledne v jedné či více učebnách brandýského gymnázia poté, co všichni příčetní studenti odejdou domů. Velkou část těchto schůzek trávíme diskusemi o absurdních tématech (např. teorie myšlenky, antimyšlenky a jejich vzájemné anihilace), hádáním se o kontroverzních názorech (např. proč je Linux bezkonkurenčně lepší oproti ostatním operačním systémům) či prací na čemkoliv co, zrovna daný člen nestíhá. Děláme ale také mnoho *bohulibějších* činností: diff --git a/content/_index.en.md b/content/_index.en.md index d5fd398..d7d300c 100644 --- a/content/_index.en.md +++ b/content/_index.en.md @@ -4,6 +4,10 @@ date: 2019-07-12T14:54:32+02:00 draft: false authors: [ "Greenscreener" ] --- +
+ This website is under active development. That means some part of it might be missing and might be subject to change in the future. + Thank you for your understanding. +
# Welcome to the official website of Pátek While "pátek" is the name of the fifth day of the week in Czech, Pátek is a group of students interested not only in IT and programming but also physics, electrical engineering, amateur radio, math, biology and anything interesting in general. Like [the Friday Men](https://en.wikipedia.org/wiki/Friday_Men) met in Karel Čapek's house every Friday afternoon, we meet every Friday afternoon in one or more classrooms in the grammar school in Brandýs nad Labem after all the sane students have gone home. A big part of these meetings is spent with discussions about absurd topics (e.g. the theory of thought, anti-thought and their mutual annihilation), arguing about controversial topics (e.g. why Linux is unbeatably better than all other OSes) and people tend to work on stuff they procrastinated to the last moments. We also do some *useful* stuff: diff --git a/themes/patek/assets/css/main.scss b/themes/patek/assets/css/main.scss index 3b8f211..1cefebc 100644 --- a/themes/patek/assets/css/main.scss +++ b/themes/patek/assets/css/main.scss @@ -140,6 +140,36 @@ h2 a { } } // /Stolen - +.is-construction { + position: relative; + padding: 12px 0; + text-align: center; + background-color: yellow; + color: black; + font-family: 'Fira Code'; + &:before, &:after { + content: ''; + position: absolute; + display: block; + height: 12px; + width: 100%; + background: repeating-linear-gradient( + -45deg, + black, + black 12px, + yellow 10px, + yellow 23px + ); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + border-bottom: 0; + } + &:before { + top: 0; + } + &:after { + bottom: 0; + } +} // /Custom styles \ No newline at end of file