-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
40 lines (35 loc) · 838 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<title>AHK Sciter Interop</title>
<style>
html {
overflow: hidden;
min-width: min-content;
min-height: min-content;
}
body {
margin: 0;
vertical-align: middle;
background: linear-gradient(right, rgb(20, 90, 20), rgb(138, 190, 138));
min-width: min-content;
min-height: min-content;
overflow: hidden;
}
h1, h2 {
font-family: "Comic Sans MS", "Comic Sans", cursive;
color: white;
margin: auto;
white-space: nowrap;
text-align: center;
vertical-align: middle;
min-width: max-content;
min-height: max-content;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<h2>from Sciter + AutoHotKey</h2>
</body>
</html>