From c928a8a0c12043e40022b62e3205dde5d90d6c0a Mon Sep 17 00:00:00 2001 From: Matthias Humt Date: Tue, 14 Mar 2023 11:04:53 +0100 Subject: [PATCH] Adds 'under review' popup --- _includes/css/main.css | 38 +++++++++++++++++ _includes/js.html | 48 +++++++++++---------- _layouts/default.html | 8 ++++ _site/index.html | 96 ++++++++++++++++++++++++------------------ _site/js/popup.js | 4 ++ _site/style.css | 38 +++++++++++++++++ js/popup.js | 4 ++ 7 files changed, 171 insertions(+), 65 deletions(-) create mode 100644 _site/js/popup.js create mode 100644 js/popup.js diff --git a/_includes/css/main.css b/_includes/css/main.css index a36c0d1..c434223 100644 --- a/_includes/css/main.css +++ b/_includes/css/main.css @@ -511,3 +511,41 @@ footer .footer-below { .circular--square--small img { width: 200px; height: 200px; border-radius: 50%; } .circular--portrait--small { display: inline-block; position: relative; width: 200px; height: 200px; overflow: hidden; border-radius: 50%; } .circular--portrait--small img { width: 100%; height: auto; } .circular--landscape--small { display: inline-block; position: relative; width: 200px; height: 200px; overflow: hidden; border-radius: 50%; } .circular--landscape--small img { width: auto; height: 100%; margin-left: -50px; } + +.popup { + display: flex; + align-items: center; + justify-content: center; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + z-index: 9999; +} + +.popup-message { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + background-color: white; + padding: 20px; + border-radius: 5px; + max-width: 80%; + max-height: 80%; + overflow-y: auto; +} + +.popup-message h1 { + font-size: 3rem; + margin: 0 0 2rem; + text-align: center; +} + +.popup-message p { + font-size: 1.5rem; + margin: 0; + text-align: center; +} diff --git a/_includes/js.html b/_includes/js.html index f0e5958..50c651b 100644 --- a/_includes/js.html +++ b/_includes/js.html @@ -1,29 +1,31 @@ - - + + - - + + - - - - + + + + - - - {% if site.contact == "static" %} - - {% else %} - - {% endif %} + + +{% if site.contact == "static" %} + +{% else %} + +{% endif %} - - + + - - + + - {% if site.contact == "disqus" %} - - {% include js_disqus.html %} - {% endif %} +{% if site.contact == "disqus" %} + +{% include js_disqus.html %} +{% endif %} + + diff --git a/_layouts/default.html b/_layouts/default.html index 41fe31c..96b7b38 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,6 +5,14 @@ {% include nav.html %} {% include header.html %} + + {% assign style = "" %} {% for post in site.posts reversed %} diff --git a/_site/index.html b/_site/index.html index 70659f1..d14b106 100644 --- a/_site/index.html +++ b/_site/index.html @@ -5,8 +5,8 @@ Probabilistic Robotics - - + + @@ -94,13 +94,10 @@
-
Probabilistic Robotics - In the age of Deep Learning - - +

IROS 2023 Workshop | Date: TBD | Room: TBD

2022 / 2023

@@ -110,6 +107,14 @@

2022 / + + @@ -125,10 +130,10 @@

Speakers

- - - - + + + + @@ -150,8 +155,8 @@

Speakers

- - + +
Fabio Ramos
Michael Kaess
Ayoung Kim
Andreas Kruse
Fabio Ramos
Michael Kaess
Ayoung Kim
Andreas Kruse
Fabio Ramos Talk: TBDTalk: TBDTalk: TBDTalk: Deep learning with a graph SLAM for robot manipulationTalk: Safe and Efficient Exploration in Bayesian Model-based Reinforcement Learning
@@ -159,9 +164,9 @@

Speakers

- - - + + + @@ -174,9 +179,9 @@

Speakers

- - - + + +
Sharon Yixuan Li
Hermann Blum
Ali Agha
Sharon Yixuan Li
Hermann Blum
Ali Agha
Sharon Yixuan Li NASA JPL & Caltech (USA)
Talk: TBDTalk: TBDTalk: TBDTalk: How to Handle Data Distributional Shifts? Challenges, Opportunities and Path ForwardTalk: 4 years of fishyscapes: uncertainty estimation in the wildTalk: Uncertainty-aware Robotic Autonomy in Extreme Environments
@@ -263,6 +268,11 @@

Schedule

Paper Presentations & Posters Norman Marlier + + 16:15 – 16:30 + Coffee Break +   + 16:30 - 17:30 Panel Discussion @@ -336,12 +346,12 @@

Organizers

- - - - - - + + + + + + @@ -478,30 +488,32 @@

Credits

- - + + - - + + - - - - + + + + - - - - - + + - - + - - - + + + + + + + + + diff --git a/_site/js/popup.js b/_site/js/popup.js new file mode 100644 index 0000000..5053fb6 --- /dev/null +++ b/_site/js/popup.js @@ -0,0 +1,4 @@ +function removePopup() { + var popup = document.querySelector(".popup"); + popup.parentNode.removeChild(popup); +} diff --git a/_site/style.css b/_site/style.css index 950b533..486696e 100644 --- a/_site/style.css +++ b/_site/style.css @@ -554,3 +554,41 @@ footer .footer-below { .circular--portrait--small { display: inline-block; position: relative; width: 200px; height: 200px; overflow: hidden; border-radius: 50%; } .circular--portrait--small img { width: 100%; height: auto; } .circular--landscape--small { display: inline-block; position: relative; width: 200px; height: 200px; overflow: hidden; border-radius: 50%; } .circular--landscape--small img { width: auto; height: 100%; margin-left: -50px; } +.popup { + display: flex; + align-items: center; + justify-content: center; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + z-index: 9999; +} + +.popup-message { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + background-color: white; + padding: 20px; + border-radius: 5px; + max-width: 80%; + max-height: 80%; + overflow-y: auto; +} + +.popup-message h1 { + font-size: 3rem; + margin: 0 0 2rem; + text-align: center; +} + +.popup-message p { + font-size: 1.5rem; + margin: 0; + text-align: center; +} + diff --git a/js/popup.js b/js/popup.js new file mode 100644 index 0000000..5053fb6 --- /dev/null +++ b/js/popup.js @@ -0,0 +1,4 @@ +function removePopup() { + var popup = document.querySelector(".popup"); + popup.parentNode.removeChild(popup); +}
Janis Postels
Jianxiang Feng
Jongseok Lee
Matthias Humt
Yizhe Wu
Rudolph Triebel
Janis Postels
Jianxiang Feng
Jongseok Lee
Matthias Humt
Yizhe Wu
Rudolph Triebel