-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (84 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/papercss@1.4.1/dist/paper.min.css">
<title>2 Min App</title>
<style type="text/css">
html,body { padding: 0px; margin: 0px; height: 100%; width: 100%; }
body {
-webkit-app-region: drag;
overflow: hidden;
/* background-color: rgba(255, 120, 192, 0.3); */
background-color: white;
}
#container {
width: 100%;
margin: 0px;
height:100%;
}
h2 {
margin-top: 0px;
padding-top: 34px;
}
#title {
color: gray;
font-size: 2.1em;
text-align: center;
}
#input-area {
margin: 0 auto;
width: 80%;
position: relative;
bottom: 0px;
}
#command {
width: 100%;
border-radius: 10px;
border: 1px #ccc solid;
background-color: transparent;
font-size: 2.3em;
text-align: center;
margin-top: 30px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
}
input:focus {
outline: 0;
}
#list {
margin: 0 auto;
width: 80%;
height: 65%;
background: rgba(255,255,255,0.7);
border: 2px black solid;
border-radius: 2%;
font-size: 1.8em;
}
li {
font-size: 20px;
}
</style>
</head>
<body class="card">
<!-- All of the Node.js APIs are available in this renderer process. -->
<div id="container" class="paper container">
<div class="card">
<div class="card-body">
<h2 id="title" class="card-title"> 2 Min APP </h2>
<ul id="list">
</ul>
<div id="input-area">
<input type="text" id="command" />
</div>
</div>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
<script src="./index.js"></script>
</body>
</html>