diff --git a/kernelpanic.lol/assets/static/quicksand.light-regular.otf b/kernelpanic.lol/assets/static/quicksand.light-regular.otf new file mode 100644 index 0000000..798c1a7 Binary files /dev/null and b/kernelpanic.lol/assets/static/quicksand.light-regular.otf differ diff --git a/kernelpanic.lol/assets/static/style.css b/kernelpanic.lol/assets/static/style.css index 7ff6e0b..f2176ff 100644 --- a/kernelpanic.lol/assets/static/style.css +++ b/kernelpanic.lol/assets/static/style.css @@ -1,16 +1,117 @@ -body { - font-family: 'Verdana', sans-serif; - margin: 50px 25px; -} + +::-webkit-scrollbar { + display: none; +} +@font-face { + font-family: "Quicksand"; + src: + local("Quicksand"), + url("/static/terminal-grotesque_open.otf"); + font-style: normal; +} +body, html, canvas { + height: 100%; + margin: 0; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + margin-left: 0%; + margin-right: 0%; + width: 100vw; + scrollbar-width: none; /* For Firefox */ + -ms-overflow-style: none; + + background-size: 20px 20px; + {% block bgstuff %} + background-color: white; + {% endblock %} + font-family: 'Quicksand', sans-serif; +} +canvas { + display:block; + z-index=-3; +} +#topbar { + width: 100%; + text-align: center; + border-bottom: 1px solid black; + position: sticky; + top:0; + animation: slideDown 3s backwards; +} +@keyframes slideDown { + 0% { + left:0vw; + } + 100% { + left:50vw; + } +} +.button { + display: inline-block; + padding: 10px; + border-right: 1px solid black; + transition: background-color 0.5s; + font-size: large; +} a { - color: #2a99b6; + font-size: large; + color: black; +} +.button:hover { + background-color: #888; +} +.content { + padding-left: 10%; + padding-right: 10%; + text-align: justify; + overflow:scroll; + width:80vw; + font-size:large; +} +h1 { + text-align: center; + font-size: ; +} +#footer { + color:inherit; + width: 100vw; + font-size: small; + -webkit-filter: invert(100%); + filter: invert(100%); + width: 100%; + text-align: center; + padding-left: 10px; + padding-right: 10px; + position: absolute; + display: block; + bottom: -75px; + background-color: inherit; + border-top: 1px solid #e7e7e7; +} +#footer a { + font-size: small; + -webkit-filter: invert(100%); + filter: invert(100%); } -a:hover { - color: #33bbdf; +.content img { + max-width: 800px; + display: inline; } +.content { + text-align: justify; + width: 80%; +} + + + + + + header, footer, div.page { width: 760px; margin: 0 auto; @@ -40,3 +141,16 @@ header nav ul li { div.page { background: #f1fbfe; } + +#grid { + position: absolute; + width: 100%; + height: 100%; + background: radial-gradient(circle closest-side, transparent 98%, #000 100%) 50% 50% / 10% 10%; + background-repeat: no-repeat; + } + + + + + diff --git a/kernelpanic.lol/assets/static/style2.css b/kernelpanic.lol/assets/static/style2.css new file mode 100644 index 0000000..560e08d --- /dev/null +++ b/kernelpanic.lol/assets/static/style2.css @@ -0,0 +1,145 @@ + + +::-webkit-scrollbar { + display: none; +} +@font-face { + font-family: "Quicksand"; + src: + local("Quicksand"), + url("/static/quicksand.light-regular.otf"); + font-style: normal; +} +body, html { + height: 100%; + margin: 0; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + margin-left: 10%; + margin-right: 10%; + width: 80vw; + scrollbar-width: none; /* For Firefox */ + -ms-overflow-style: none; + {% block bgstuff %} + background-color: white; + {% endblock %} + font-family: 'Quicksand', sans-serif; +} + +#topbar { + width: 100%; + text-align: center; + border-bottom: 1px solid black; + position: sticky; + top:0; + animation: slideDown 3s backwards; +} +@keyframes slideDown { + 0% { + left:0vw; + } + 100% { + left:50vw; + } +} +.button { + display: inline-block; + padding: 10px; + border-right: 1px solid black; + transition: background-color 0.5s; + font-size: large; +} +a { + font-size: large; + color: black; +} +.button:hover { + background-color: #888; +} +.content { + padding-left: 10%; + padding-right: 10%; + text-align: justify; + overflow:scroll; + width:80vw; + font-size:large; +} +h1 { + text-align: left; +} +#footer { + color:inherit; + width: 100vw; + font-size: small; + -webkit-filter: invert(100%); + filter: invert(100%); + width: 100%; + text-align: center; + padding-left: 10px; + padding-right: 10px; + position: absolute; + display: block; + bottom: -75px; + background-color: inherit; + border-top: 1px solid #e7e7e7; +} +#footer a { + font-size: small; + -webkit-filter: invert(100%); + filter: invert(100%); +} + +.content img { + max-width: 800px; + display: inline; +} + +.content { + text-align: justify; + width: 80%; +} + + + + + + +header, footer, div.page { + width: 760px; + margin: 0 auto; + background: #daeef3; + padding: 20px 30px; +} + +header h1 { + color: #169bbd; + margin: 0; + font-weight: normal; + font-size: 42px; +} + +header nav ul { + list-style: none; + margin: 0; + padding: 0; +} + +header nav ul li { + display: inline; + margin: 0 8px 0 0; + padding: 0; +} + +div.page { + background: #f1fbfe; +} + +#grid { + position: absolute; + width: 100%; + height: 100%; + background: radial-gradient(circle closest-side, transparent 98%, #000 100%) 50% 50% / 10% 10%; + background-repeat: no-repeat; + } diff --git a/kernelpanic.lol/assets/static/terminal-grotesque_open.otf b/kernelpanic.lol/assets/static/terminal-grotesque_open.otf new file mode 100644 index 0000000..41e3de6 Binary files /dev/null and b/kernelpanic.lol/assets/static/terminal-grotesque_open.otf differ diff --git a/kernelpanic.lol/assets/static/tex-gyre-adventor.regular.otf b/kernelpanic.lol/assets/static/tex-gyre-adventor.regular.otf new file mode 100644 index 0000000..5c1786d Binary files /dev/null and b/kernelpanic.lol/assets/static/tex-gyre-adventor.regular.otf differ diff --git a/kernelpanic.lol/content/contents.lr b/kernelpanic.lol/content/contents.lr index 7f80d5a..2cea861 100644 --- a/kernelpanic.lol/content/contents.lr +++ b/kernelpanic.lol/content/contents.lr @@ -1,7 +1,17 @@ -title: Habemus hackspace +title: Somos un **hackspace** --- body: +##¿Qué es un hackspace? + +Un lugar mágico, místico y maravilloso donde nos reunimos a plantear y resolver problemas, aprender nuevas habilidades, así como, en general, interactuar sin temor a juicio en torno a temas de tecnología y libertad. + +##¿Qué implica ser hacker? + +Implica tener curiosidad ante lo desconocido, perseverancia ante irresolvible y el ego preparado para estar en lo equivocado. + +##¿Por qué *Kernel Panic* Space? + El **_kernel panic_** es un viaje solitario a través del laberinto de la información. Te abres camino a tientas entre las enredaderas de los manuales, los callejones sin salida de los foros y los pozos sin fondo de las listas de correo. ¿Qué habrá visto, de veras, [DenverCoder9](https://letmegooglethat.com/?q=denvercoder9&l=1)? ¿Quién tendrá la respuesta a tu pregunta? Tal vez nadie, pero en este _Cuarto de Máquinas_ creemos que tu búsqueda implacable no tiene por qué ser un viaje enfrentado a solas. diff --git a/kernelpanic.lol/kernelpanic.lol.lektorproject b/kernelpanic.lol/kernelpanic.lol.lektorproject index a393abc..8889606 100644 --- a/kernelpanic.lol/kernelpanic.lol.lektorproject +++ b/kernelpanic.lol/kernelpanic.lol.lektorproject @@ -5,5 +5,5 @@ name = kernelpanic.lol [servers.kernet] name = kernet enabled = true -target = rsync://h4x@10.13.42.3:4891/home/h4x/www -extra_flags = --delete \ No newline at end of file +target = rsync://root@10.13.42.99:22/var/www/kp.lol +extra_flags = --delete diff --git a/kernelpanic.lol/layoutWithJs.html b/kernelpanic.lol/layoutWithJs.html new file mode 100644 index 0000000..c20333e --- /dev/null +++ b/kernelpanic.lol/layoutWithJs.html @@ -0,0 +1,232 @@ + + + + + {% block title %}{% endblock %} + + + + + +
+ {% block topbar %} +
a casa
+
a casa
+
GuateCON 0.1
+
qué es esto
+
quiénes somos
+
blog
+
proyectos
+
participa en el censo
+ + + + {% endblock %} +
+ +
+

{{ this.title }}

+ {% block body %}{% endblock %} +
+ + + + + + + diff --git a/kernelpanic.lol/templates/layout.html b/kernelpanic.lol/templates/layout.html index a0c387b..52177d4 100644 --- a/kernelpanic.lol/templates/layout.html +++ b/kernelpanic.lol/templates/layout.html @@ -3,120 +3,27 @@ {% block title %}{% endblock %} + -
{% block topbar %}
a casa
-
a casa
-
GuateCON 0.1
-
qué es esto
-
quiénes somos
-
blog
+ +
qué es esto
+
quiénes somos
+
blog
proyectos
-
participa en el censo
+ {% endblock %}
-

{{ this.title }}

{% block body %}{% endblock %} @@ -161,7 +68,8 @@ }); }); - - \ No newline at end of file +