-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (112 loc) · 3.01 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Henkaku Loader</title>
<meta name="description" content="HENkaku Loader">
<meta name="viewport" content="width=device-width">
<style>
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display:table;
}
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #373a3c;
background-color: #fff;
display:table-cell;
vertical-align:middle;
}
.wrapper {
display:table;
margin:auto;
}
.btn-primary.active.focus, .btn-primary.active:focus,
.btn-primary.active:hover, .btn-primary:active.focus,
.btn-primary:active:focus, .btn-primary:active:hover {
color: #fff;
background-color: #014682;
border-color: #01315a;
}
.btn-primary.active, .btn-primary:active {
color: #fff;
background-color: #025aa5;
border-color: #01549b;
background-image: none;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn-primary:hover {
color: #fff;
background-color: #025aa5;
border-color: #01549b;
}
.btn.active, .btn:active {
background-image: none;
outline: 0;
}
.btn:focus, .btn:hover {
text-decoration: none;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
button {
overflow: visible;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.25;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .5rem 1rem;
font-size: 1rem;
border-radius: .25rem;
}
.btn-outline-warning {
color: #f0ad4e;
background-image: none;
background-color: transparent;
border-color: #f0ad4e;
}
.btn-primary {
color: #fff;
background-color: #0275d8;
border-color: #0275d8;
}
.btn-lg {
padding: .75rem 1.5rem;
font-size: 3.25rem;
border-radius: .9rem;
}
a {
background-color: transparent;
color: #f0ad4e;
text-decoration: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
</style>
</head>
<body>
<div class="wrapper">
<a href="/stage1" class="btn btn-lg btn-primary">Install HENkaku</a>
</div>
</body>
</html>