-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (105 loc) · 3.84 KB
/
index.html
File metadata and controls
113 lines (105 loc) · 3.84 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
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SerenityOS CSS Demo</title>
<link rel="stylesheet" href="serenity.css">
<style>
body {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.window {
margin: 20px;
}
</style>
</head>
<body>
<div class="window active">
<div class="title-bar">
<div class="title-bar-text">About SerenityOS CSS</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">
<h1>Welcome!</h1>
<p>This is a simple demonstration of SerenityOS-like CSS styling applied to a web page.</p>
<p>Experience the classic look and feel of a retro desktop environment right in your browser.</p>
<div class="text-center mt-1">
<button>OK</button>
<button disabled>Disabled Button</button>
<button onclick="window.location.href='../index.html'">Back to Gallery</button>
</div>
</div>
</div>
<div class="window inactive">
<div class="title-bar">
<div class="title-bar-text">Login</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">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="username" value="guest">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" value="********">
</div>
<div class="form-group">
<label for="email">Disabled Email:</label>
<input type="email" id="email" value="disabled@example.com" disabled>
</div>
<div class="text-center mt-1">
<button>Login</button>
<button>Cancel</button>
</div>
</div>
</div>
<div class="window active" style="min-width: 400px;">
<div class="title-bar">
<div class="title-bar-text">Preferences</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">
<h2>Display Settings</h2>
<div class="form-group">
<label>Theme:</label>
<select>
<option>Serenity (Default)</option>
<option>High Contrast</option>
<option>Dark Mode (Not Implemented)</option>
</select>
</div>
<div class="form-group">
<label>Background Pattern:</label>
<div class="well">
<p>This is a well component. It creates a sunken, inset effect often used for displaying information
or grouping controls.</p>
</div>
</div>
<div class="text-center mt-1">
<button>Apply</button>
<button>OK</button>
<button>Cancel</button>
</div>
</div>
</div>
</body>
</html>