Added under construction warning to homepage.
This commit is contained in:
parent
4980b19b7d
commit
357f237d1e
@ -4,6 +4,9 @@ date: 2019-07-12T14:54:15+02:00
|
||||
draft: false
|
||||
authors: [ "Greenscreener" ]
|
||||
---
|
||||
<div class="is-construction">
|
||||
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í.
|
||||
</div>
|
||||
# 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í:
|
||||
|
||||
|
@ -4,6 +4,10 @@ date: 2019-07-12T14:54:32+02:00
|
||||
draft: false
|
||||
authors: [ "Greenscreener" ]
|
||||
---
|
||||
<div class="is-construction">
|
||||
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.
|
||||
</div>
|
||||
# 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:
|
||||
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user