mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-09 00:24:09 +00:00
The stylesheets only used Less for variables and nesting, both of which are now native CSS features supported by Electron 41's bundled Chromium. - src/less/ -> src/css/, all .less files renamed to .css - @win-* variables -> :root custom properties + var() - // comments -> /* */ - Dropped unused @win-silver - Removed less devDependency and the dead 'less' npm script (pointed at a non-existent tools/lessc.js)
16 lines
468 B
HTML
16 lines
468 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>windows95</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="../src/css/vendor/98.css">
|
|
<link rel="stylesheet" href="../src/css/root.css">
|
|
<!-- libv86 -->
|
|
</head>
|
|
<body class="paused windows95">
|
|
<div id="app"></div>
|
|
<script src="../src/renderer/app.tsx"></script>
|
|
</body>
|
|
</html> |