-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (100 loc) · 3.83 KB
/
index.html
File metadata and controls
108 lines (100 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IRIX Indigo Magic Desktop</title>
<link rel="stylesheet" href="irix-indigo.css">
<style>
.desktop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--irix-desktop);
display: flex;
padding: 20px;
gap: 20px;
}
.icon-column {
display: flex;
flex-direction: column;
gap: 20px;
}
.irix-icon {
display: flex;
flex-direction: column;
align-items: center;
width: 80px;
cursor: pointer;
color: white;
text-shadow: 1px 1px 2px black;
}
.irix-icon img {
width: 48px;
height: 48px;
background: #afafaf;
border: 2px solid #fff;
box-shadow: 2px 2px 0 #555;
margin-bottom: 5px;
}
.irix-icon span {
font-size: 12px;
font-weight: bold;
text-align: center;
}
</style>
</head>
<body>
<div class="desktop">
<div class="icon-column">
<div class="irix-icon">
<div
style="width:48px; height:48px; background:#fff; border:2px solid #000; display:flex; align-items:center; justify-content:center; color:black; font-weight:bold; box-shadow: 2px 2px #555;">
Tool</div>
<span>Toolchest</span>
</div>
<div class="irix-icon">
<div
style="width:48px; height:48px; background:#fff; border:2px solid #000; display:flex; align-items:center; justify-content:center; color:black; font-weight:bold; box-shadow: 2px 2px #555;">
Dump</div>
<span>Dumpster</span>
</div>
</div>
<div class="window active" style="top: 50px; left: 150px; width: 450px;">
<div class="title-bar">
<div class="title-bar-text">Indigo Magic Showcase</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Welcome to SGI IRIX 6.5 Indigo Magic Desktop.</p>
<fieldset>
<legend>System Controls</legend>
<div style="margin-bottom: 10px;">
<button class="default">Accept Changes</button>
<button>Revert</button>
<button disabled>Apply</button>
</div>
<div style="display: flex; flex-direction: column; gap: 10px;">
<input type="text" placeholder="Enter configuration..." value="/usr/sbin/init">
<label><input type="checkbox" checked> Enable Networking</label>
<div style="display: flex; gap: 15px;">
<label><input type="radio" name="mode" value="1" checked> Graphics</label>
<label><input type="radio" name="mode" value="2"> Text Mode</label>
</div>
</div>
</fieldset>
<p style="font-size: 0.9em; color: #333;">Silicon Graphics Computer Systems</p>
<div style="margin-top: 15px;">
<button onclick="window.location.href='../index.html'">Back to Gallery</button>
</div>
</div>
</div>
</div>
</body>
</html>