mirror of
https://github.com/glassflame/glassflame.github.io.git
synced 2024-11-21 23:54:26 +00:00
59 lines
No EOL
1.9 KiB
HTML
59 lines
No EOL
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>WIP: Obsiview</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<style>
|
|
@import "style/light.css";
|
|
@import "style/dark.css";
|
|
|
|
body {
|
|
background-color: var(--color-background);
|
|
color: var(--color-foreground);
|
|
}
|
|
</style>
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<script type="module" src="src/index.mjs"></script>
|
|
</head>
|
|
<body>
|
|
<template id="template-card">
|
|
<style>
|
|
.card {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
}
|
|
</style>
|
|
<div class="card">
|
|
<h1>
|
|
<slot name="card-name">Card name</slot>
|
|
</h1>
|
|
<div>
|
|
<slot name="card-contents">Card contents</slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template id="template-wikilink">
|
|
<style>
|
|
.wikilink {
|
|
text-decoration: underline 1px solid var(--color-accent);
|
|
}
|
|
</style>
|
|
<abbr class="wikilink"><slot name="wikilink-text">Wikilink text</slot></abbr>
|
|
</template>
|
|
<template id="template-hashtag">
|
|
<style>
|
|
.hashtag {
|
|
background-color: rgba(var(--color-accent), 0.2);
|
|
color: rgb(var(--color-accent))
|
|
}
|
|
</style>
|
|
<span class="hashtag"><slot name="hashtag-text">#Hashtag</slot></span>
|
|
</template>
|
|
<x-card href="https://raw.githubusercontent.com/Steffo99/appunti-magistrali/main/8%20-%20Sistemi%20complessi/1%20-%20Sistemi%20dinamici/convezione%20di%20Rayleigh-B%C3%A9nard.md"></x-card>
|
|
<x-card href="https://raw.githubusercontent.com/Steffo99/appunti-magistrali/main/8%20-%20Sistemi%20complessi/1%20-%20Sistemi%20dinamici/condizione%20iniziale.md"></x-card>
|
|
<x-card href="https://raw.githubusercontent.com/Steffo99/appunti-magistrali/main/8%20-%20Sistemi%20complessi/1%20-%20Sistemi%20dinamici/metastabilit%C3%A0.md"></x-card>
|
|
</body>
|
|
</html> |