-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (80 loc) · 4.07 KB
/
index.html
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
<!-- SAMPLE HTML!!!! YOU CAN USE IT TO GUIDE -->
<html lang="en">
<head>
<title>Workbench 1.x CSS</title>
<link rel="stylesheet" type="text/css" href="workbench1.css">
<style type="text/css">
.center { text-align: center; }
</style>
</head>
<body>
<div class="topbar">
<span>Workbench 1.x CSS</span><span class="margin">Release</span>
<!-- You could add buttons like in here -->
<div class="buttons">
<img alt="Disabled" width="25" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb1.gif"><img alt="Disabled" width="28" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb2.gif">
</div>
</div>
<div class="window">
<div class="titlebar">
<span>Workbench 1.x CSS</span>
<div class="buttons">
<img alt="Disabled" width="25" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb1.gif"><img alt="Disabled" width="28" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb2.gif">
</div>
</div>
<div class="content">
<h1 class=center>CSS Style Destined to look like Workbench 1.x</h1>
</div>
</div>
<p class="center">
CSS Stylesheet that is designed to look like A Workbench 1.x, <a href="https://github.com/xproot/Workbench1CSS">View on GitHub</a><br>
<a href="https://www.dafont.com/topaz-new.font">Topaz New</a> font recommended.
Every window should follow this template
</p>
<div class="window">
<div class="titlebar">
<span>Window Template</span>
<div class="buttons">
<img alt="Disabled" width="25" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb1.gif"><img alt="Disabled" width="28" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb2.gif">
</div>
</div>
<div class="content">
<div class="window"><br>
<div class="titlebar"><br>
<span>Title</span><br>
(Optional)<br>
<div class="buttons"><br>
<img alt="Disabled" width="25" height="20" src="wb1.gif"><img alt="Disabled" width="28" height="20" src="wb2.gif"><br>
</div><br>
(You'll have to upload the images to your webserver)<br>
</div><br>
<div class="content"><br>
Content<br>
</div><br>
</div><br>
</div>
</div>
<div class="fullwidth window">
<div class="titlebar">
<span>Full-Width Window</span>
<div class="buttons">
<img alt="Disabled" width="25" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb1.gif"><img alt="Disabled" width="28" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb2.gif">
</div>
</div>
<div class="content">
<div class"fullwidth window"> will cause a Full-Width window
</div>
</div>
<div class="window">
<div class="titlebar">
<span>No Scrollbars Window</span>
<div class="buttons">
<img alt="Disabled" width="25" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb1.gif"><img alt="Disabled" width="28" height="20" src="https://xproot.github.io/Workbench1CSS/assets/wb2.gif">
</div>
</div>
<div class="noscroll content">
<div class"noscroll content"> will cause a window with no scrollbars
</div>
</div>
</body>
</html>