47 lines
874 B
HTML
47 lines
874 B
HTML
<!--
|
|
Kyler Olsen
|
|
November 2023
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test</title>
|
|
<style>
|
|
body {
|
|
background-color: #001524;
|
|
}
|
|
.flex-area {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 95%;
|
|
}
|
|
.code {
|
|
flex-grow: 1;
|
|
}
|
|
/* .code.idle-test {
|
|
flex-grow: 2;
|
|
} */
|
|
</style>
|
|
|
|
<link rel="stylesheet" href="editor.css">
|
|
<link rel="stylesheet" href="test.css">
|
|
|
|
<script src="editor.js" type="module"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="flex-area">
|
|
<div class="code idle-dark"></div>
|
|
<div class="code ytd-test"></div>
|
|
<div class="code idle-light"></div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|