diff --git a/content/meetups.json b/content/meetups.json index b4b61dced30..b652a8f1d53 100644 --- a/content/meetups.json +++ b/content/meetups.json @@ -38,8 +38,15 @@ "name": "Einundzwanzig Meetup Sachsen-Anhalt", "region": "Sachsen-Anhalt", "url": "https://t.me/Meetup21SA", - "top": 34, - "left": 56 + "top": 31, + "left": 53 + }, + { + "name": "Leipziger Bitcoin-Stammtisch", + "region": "Leipzig", + "url": "https://www.meetup.com/de-DE/Leipziger-Bitcoin-Stammtisch/", + "top": 35, + "left": 60 }, { "name": "Einundzwanzig Meetup Köln", @@ -86,7 +93,7 @@ { "name": "Bitcoin München", "region": "München", - "url": "https: //www.meetup.com/de-DE/Bitcoin-Munich/", + "url": "https://www.meetup.com/de-DE/Bitcoin-Munich/", "top": 72, "left": 53 }, diff --git a/src/css/sections/meetups.css b/src/css/sections/meetups.css index 5bc564d0f19..a5c422598d5 100644 --- a/src/css/sections/meetups.css +++ b/src/css/sections/meetups.css @@ -49,7 +49,7 @@ & .dot { content: ''; position: absolute; - top: .3rem; + top: .275rem; left: -1.25rem; background: radial-gradient(currentColor 0%, rgba(255, 255, 255, 0) 100%); animation-timing-function: linear; diff --git a/src/meetups.pug b/src/meetups.pug index ce689c46b44..d6fa502f95d 100644 --- a/src/meetups.pug +++ b/src/meetups.pug @@ -22,16 +22,18 @@ block main ul.meetups each m in filterOfficial(meetups, true) li.official(style=`top:${m.top}%;left:${m.left}%;`) - .dot(style=`animation-delay:${((j*2000) + random(3000))}ms;animation-duration:${meetups.length*2}s;`) - a(href=m.url target="_blank" rel="nofollow noopener")= m.name.replace('Einundzwanzig Meetup ', '') + a(href=m.url target="_blank" rel="nofollow noopener") + .dot(style=`animation-delay:${((j*2000) + random(3000))}ms;animation-duration:${meetups.length*2}s;`) + = m.name.replace('Einundzwanzig Meetup ', '') - j++ h2 Weitere Meetups ul.meetups each m in filterOfficial(meetups, false) li(style=`top:${m.top}%;left:${m.left}%;`) - .dot(style=`animation-delay:${((j*2000) + random(3000))}ms;animation-duration:${meetups.length*2}s;`) - a(href=m.url target="_blank" rel="nofollow noopener")= m.name + a(href=m.url target="_blank" rel="nofollow noopener") + .dot(style=`animation-delay:${((j*2000) + random(3000))}ms;animation-duration:${meetups.length*2}s;`) + = m.name - j++ img(src=assetPath('/img/dach.svg') alt="DE, AT, CH")