mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-09 08:28:24 +00:00
Replace the sparse start/settings cards with a Win95-styled launcher: - Start screen is now a 'Welcome to Windows 95' dialog with a gradient side stripe, a rotating tip box, and a button column. - Settings is a tabbed Properties sheet (Floppy / Network / State) with group boxes, sunken read-only path fields, and OK/Cancel. - Vendored 98.css and its Pixelated MS Sans Serif fonts; dropped the old 95css-based .btn/.card/.nav classes. - Removed the bottom taskbar nav (start-menu.tsx) — navigation now goes through the dialog buttons so the launcher isn't mistaken for the running OS.
16 lines
471 B
HTML
16 lines
471 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/less/vendor/98.css">
|
|
<link rel="stylesheet" href="../src/less/root.less">
|
|
<!-- libv86 -->
|
|
</head>
|
|
<body class="paused windows95">
|
|
<div id="app"></div>
|
|
<script src="../src/renderer/app.tsx"></script>
|
|
</body>
|
|
</html> |