adding CSS

This commit is contained in:
2024-07-08 12:07:47 +02:00
parent 75a782977f
commit 3059c20f12
2 changed files with 12 additions and 2 deletions

9
src/index.css Normal file
View File

@@ -0,0 +1,9 @@
#chord_sheet {
font-family: monospace;
font-size: 13px;
}
.chord {
font-weight: bold;
cursor: pointer;
}

View File

@@ -2,12 +2,13 @@
<html>
<head>
<meta charset="utf-8" />
<title>Webpack App</title>
<title>Chord Sheet Editor</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<h1>Hello world!</h1>
<h2>Tip: Check your console</h2>
<div id="chord_sheet" style="font-family: monospace;"></div>
<div id="chord_sheet"></div>
<script type="module" src="App.ts"></script>
</body>