Skip to content

Instantly share code, notes, and snippets.

@max-power
Created August 26, 2015 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save max-power/e12b14acb4c54e6e4c6f to your computer and use it in GitHub Desktop.
Save max-power/e12b14acb4c54e6e4c6f to your computer and use it in GitHub Desktop.
CSS Counters
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ToC</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css" media="screen">
body {
font-family: -apple-system-font;
}
ol {
list-style-type: none;
counter-reset: section;
}
ol li {
counter-increment: section;
margin: 0.5rem 0;
}
ol li:before {
content: counters(section, ".") ". ";
font-weight: bold;
color: #369;
}
</style>
</head>
<body>
<ol>
<li>Einleitung
<ol>
<li>Allgemeine Einführung</li>
<li>Fokussierter Ultraschall, Erläuterung und bisherige Anwendungen
<ol>
<li>Neurochirurgie</li>
<li>Ophthalmologie</li>
<li>Urologie</li>
<li>Weitere onkologische Anwendungen</li>
<li>Neue Ansätze</li>
</ol>
</li>
<li>MRT-gesteuerter fokussierter Ultraschall
<ol>
<li>Warum Kombination von MRT und fokussiertem Ultraschall?</li>
<li>Vorarbeiten und tierexperimentelle Studien</li>
<li>Anwendung am Menschen</li>
</ol>
</li>
<li>Uterusmyome
<ol>
<li>Definition</li>
<li>Epidemiologie</li>
<li>Risikofaktoren</li>
<li>Pathogenese / Ätiologie</li>
<li>Pathologie</li>
<li>Klinik (Symptome)</li>
<li>Diagnostik</li>
<li>Differentialdiagnostik</li>
</ol>
</li>
<li>Bisherige Behandlungskonzepte bei Uterusmyomen
<ol>
<li>Operative Behandlungskonzepte
<ol>
<li>Hysterektomie</li>
<li>Myomektomie</li>
<li>Myolyse</li>
</ol>
</li>
<li>Nichtoperative Behandlungskonzepte
<ol>
<li>Embolisation (UAE)</li>
<li>Medikamentöse Therapie</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
<li>Zielsetzung der Arbeit / Fragestellung</li>
<li>Material und Methoden
<ol>
<li>Studienmodalitäten
<ol>
<li>Einschlusskriterien</li>
<li>Ausschlusskriterien</li>
</ol>
</li>
<li>Geräteaufbau</li>
<li>Ultraschalleinheit</li>
<li>Durchführung
<ol>
<li>Gynäkologische Voruntersuchung</li>
<li>Evaluation und Bildgebung vor der Behandlung</li>
<li>Behandlung</li>
</ol>
</li>
</ol>
</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment