1
Fork 0
mirror of https://github.com/glassflame/glassflame.github.io.git synced 2024-11-22 08:04:27 +00:00
glassflame/index.html

59 lines
1.9 KiB
HTML
Raw Normal View History

2023-10-18 23:58:51 +00:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
2023-10-18 23:11:03 +00:00
<title>WIP: Obsiview</title>
2023-10-19 10:41:35 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2023-10-19 12:56:08 +00:00
<style>
@import "style/light.css";
@import "style/dark.css";
body {
background-color: var(--color-background);
color: var(--color-foreground);
}
</style>
2023-10-18 23:58:51 +00:00
<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;
2023-10-18 23:58:51 +00:00
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>
2023-10-19 12:56:08 +00:00
<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>
2023-10-19 12:56:08 +00:00
<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>