-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (62 loc) · 989 Bytes
/
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
<style "text/css">
body,html {
background: #3464a4;
color: white;
font-family: monospace;
letter-spacing: -1px;
}
form {
width: 250px;
margin: 0 auto;
padding: 0 2px 8px;
color: #000;
background: #DDD;
box-shadow: 8px 16px #234;
}
fieldset {
height: 130px;
border-color: #555;
}
legend {
color: #D00;
margin: 0 auto;
}
legend:after {
content: ' | ';
color: #555;
}
legend:before {
content:' | ';
color: #555;
}
div {
width: 70px;
margin: 0 auto;
}
button {
margin: 2px 0;
padding: 0;
border: none;
color: inherit;
background: none;
letter-spacing: inherit;
font: inherit;
}
button:focus, button:hover {
background: #C00;
color: white;
outline: none;
}
</style>
<form>
<fieldset>
<legend>Terminal dialog window</legend>
Default:<br>
<div>
<button>Button 1</button><br>
<button>Button 2</button><br><br>
<button><Ok></button>
<button><Cancel></button>
</div>
</fieldset>
</form>