~bfluhr/website

961085230f7b4bed5c6602208fc987c41f209246 — Benedikt Fluhr 1 year, 8 months ago 8c76786
Added Slides to Notes
2 files changed, 78 insertions(+), 18 deletions(-)

M src/notes/index.html
M src/notes/style.css
M src/notes/index.html => src/notes/index.html +55 -18
@@ 58,24 58,61 @@
	  </dl>
	  <a href="https://arxiv.org/abs/2205.15275" class="arxiv">
	    arXiv:2205.15275</a>
	  <p>
	    I gave two presentations of this work,
	    each from a different perspective.
	    One at <a href="https://atmcs.web.ox.ac.uk/home">ATMCS 10</a>
	    using <a href="/atmcs10/#title">these slides</a>
	    and one at the
	    <a href="https://psht-seminar.github.io/index.html">
	      PSHT Online Seminar</a>
	    using <a href="/psht-22/#title">this slide deck</a>.
	    (Presently
	    both slide decks are displayed best in
	    <a href="https://en.wikipedia.org/wiki/Google_Chrome">
	      Google Chrome</a>
	    and other
	    <a href="https://en.wikipedia.org/wiki/Blink_(browser_engine)">
	      Blink</a>-based
	    web browsers.)
	  </p>
	  <table class="slides">
	    <thead>
	      <tr>
		<th colspan="2">
		  Slides
		  (displayed best in
		  <a href="https://en.wikipedia.org/wiki/Google_Chrome">
		    Chrome</a>)
		</th>
	      </tr>
	    </thead>
	    <tbody>
	      <tr>
		<td>
		  <a href="/ARTNeM-23/#title">
		    January 27, 2023
		  </a>
		</td>
		<td>
		  <a href="https://sites.google.com/view/rep-theory-in-germany/home">
		    ARTIG #1</a>
		</td>
	      </tr>
	      <tr>
		<td>
		  <a href="/psht-22/#title">
		    December 13, 2022
		  </a>
		</td>
		<td>
		  <a href="https://psht-seminar.github.io/index.html">
		    PSHT Seminar</a>
		</td>
	      </tr>
	      <tr>
		<td>
		  <a href="/at-tda-22/#title">
		    August 18, 2022</a>
		</td>
		<td>
		  <a href="https://biannual-austrian-tda.github.io/">
		    Biannual Austrian TDA Meeting</a>
		</td>
	      </tr>
	      <tr>
		<td>
		  <a href="/atmcs10/#title">
		    June 20, 2022</a>
		</td>
		<td>
		  <a href="https://atmcs.web.ox.ac.uk/">ATMCS10</a>
		</td>
	      </tr>
	    </tbody>
	  </table>
	</section>
      </section>
      <section>

M src/notes/style.css => src/notes/style.css +23 -0
@@ 1,5 1,10 @@
:root {
    --border-width: 0.19rem;
    --dd-margin-inline-start: 40px;
}

dd {
    margin-inline-start: var(--dd-margin-inline-start);
}

body {


@@ 36,3 41,21 @@ time {
    display: block;
    font-style: italic;
}

table.slides {
    border-collapse: collapse;
}

table.slides th {
    font-weight: unset;
    text-align: unset;
}

table.slides td:nth-child(1) {
    padding-inline-start: var(--dd-margin-inline-start);
    padding-inline-end: 1em;
}

table.slides td:nth-child(2):before {
    content: "@";
}