From 8f5d50cd6ac77b4c698c53afccd4f787e98ed168 Mon Sep 17 00:00:00 2001 From: Stephanie Vilayphiou Date: Tue, 21 May 2019 17:31:59 +0200 Subject: [PATCH] a start of brussels session --- css/stylesheet.css | 22 +++++++++++++- index.html | 71 ++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 86 insertions(+), 7 deletions(-) diff --git a/css/stylesheet.css b/css/stylesheet.css index e6216ef..ee068f6 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -134,7 +134,7 @@ div#relearn-infos ul { div.controlpoint{ max-width: 800px; margin: 1em 0; - float: left; + padding: 1em 0; border-top: 1px solid black; border-bottom: 1px solid black; @@ -150,10 +150,23 @@ div.controlpoint ul { margin-top: 1em; } +.programme div.flex { + float: left; + width: 50%; +} + .programme p { width: 50%; float: left; } +.programme div.flex p { + width: 100%; + float: none; +} + +div.controlpoint .programme ul { + column-count: 1; +} .participation, .hosting { @@ -169,11 +182,18 @@ div.controlpoint ul { } +/*--- ROTTERDAM ---*/ #rotterdam{ color:#0054ff; } #rotterdam li{ list-style: none; + text-indent: -34px; +} + +/*--- BRUSSELS ---*/ +#brussels { + color: teal; } diff --git a/index.html b/index.html index 05cd8e7..27702ca 100644 --- a/index.html +++ b/index.html @@ -147,7 +147,66 @@ We will take care of a daily vegetarian lunch (please let us know about - + + + +
+

·Brussels

+ + +
+
Date
21st–22nd June 2019
+
Location
Hacktiris - Rue Paul Devauxstraat 5, Brussels, Belgium
+
Initiator
OSP
+
Contact
miam@osp.kitchen
+
+ +
+ +

+ Exploring computed layout tools. +

+ +
+ +
+ +
+

Programme

+ +
+

Friday 21st June
+ 10:00–18:00 +

+
    +
  • Short introduction of tools to experiment with: Flat, Sile, paged.js
  • +
  • Choose your tool and have fun with it!
  • +
+
+ +
+

Saturday 22nd June
+ 10:00–18:00

+
    +
  • Continuation of the exploration
  • +
  • Show/tell/criticize
  • +
+
+
+ +
+

Participation

+ +

If you would like to join this Relearn session, please send an email to miam@osp.kitchen with a short motivation of your interest. We will reply to subscriptions on a regular basis, up to the 10th of June.

+

Our capacities allow us to have a group of 12 relearners. Our preference goes out to people that can join the whole session (Friday, Saturday). +

+
+ +
+

Hosting

+

+We will take care of a daily vegetarian lunch (please let us know about allergies or other dietary preferences). Following a tradition from previous years, we will arrange a hosting network in the city and find a place to stay for everyone. Please mention in the email if you need to be hosted or could host one or more relearners in your house.

+
@@ -156,7 +215,7 @@ We will take care of a daily vegetarian lunch (please let us know about jQuery(function($){ $("#slider").pathslider({ points : [250,50,-150,100,-50,-400,250,250], - value : 49, + value : 0, rotateGrip : true, tolerance : 3, range : 30, @@ -176,12 +235,12 @@ We will take care of a daily vegetarian lunch (please let us know about $(document).ready(function() { $('#slider').bind('slide.pathslider', function(event, slider){ var scrollPos = slider.percent * ( $('#curve')[0].scrollHeight - $(window).height() ) / 100 - console.log(scrollPos); - $('#curve').stop().animate({scrollTop: scrollPos}, 200); + //$('#curve').scrollTop(scrollPos); + $('#curve').stop().animate({scrollTop: scrollPos}, 200); }); $('#curve').scroll(function() { - offset = ($('#curve').scrollTop() / $(document).height()) * 33; - console.log(offset); + curve = document.querySelectorAll('#curve')[0] + offset = curve.scrollTop / (curve.scrollHeight - curve.clientHeight) * 100; $('#slider').getpathslider().setSlider(offset); });