Skip to content

Commit 0d90490

Browse files
committed
webdialog template generated.
1 parent bcb8f92 commit 0d90490

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
.jekyll-cache/

_config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
title: webdialog
2+
3+
description: > # this means to ignore newlines until "baseurl:"
4+
A web template for creating dialog command like web page creation.
5+
6+
baseurl: "" # the subpath of your site, e.g. /blog
7+
8+
twitter_username: pyrz_suleyman
9+
github_username: Zaryob
10+

index.html

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<style "text/css">
2+
body,html {
3+
background: #3464a4;
4+
5+
color: white;
6+
font-family: monospace;
7+
letter-spacing: -1px;
8+
}
9+
form {
10+
width: 250px;
11+
margin: 0 auto;
12+
padding: 0 2px 8px;
13+
14+
color: #000;
15+
background: #DDD;
16+
box-shadow: 8px 16px #234;
17+
}
18+
fieldset {
19+
height: 130px;
20+
border-color: #555;
21+
}
22+
23+
legend {
24+
color: #D00;
25+
margin: 0 auto;
26+
}
27+
legend:after {
28+
content: ' | ';
29+
color: #555;
30+
}
31+
legend:before {
32+
content:' | ';
33+
color: #555;
34+
}
35+
36+
div {
37+
width: 70px;
38+
margin: 0 auto;
39+
}
40+
41+
42+
button {
43+
margin: 2px 0;
44+
padding: 0;
45+
border: none;
46+
47+
color: inherit;
48+
background: none;
49+
letter-spacing: inherit;
50+
font: inherit;
51+
}
52+
button:focus, button:hover {
53+
background: #C00;
54+
color: white;
55+
outline: none;
56+
}
57+
</style>
58+
<form>
59+
<fieldset>
60+
<legend>Terminal dialog window</legend>
61+
Default:<br>
62+
<div>
63+
<button>Button 1</button><br>
64+
<button>Button 2</button><br><br>
65+
<button>&lt;Ok&gt;</button>
66+
<button>&lt;Cancel&gt;</button>
67+
</div>
68+
</fieldset>
69+
</form>

0 commit comments

Comments
 (0)