forked from prakhar1989/react-term
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (77 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<title>Prakhar Srivastav</title>
<link rel="stylesheet" href="http://getskeleton.com/dist/css/normalize.css">
<link rel="stylesheet" href="http://getskeleton.com/dist/css/skeleton.css">
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<style>
body {
margin: 100px 0;
font-family: 'Inconsolata', monospace;
font-size: 14px;
color: #dfe1e8;
background: #343d46;
}
#app, div.input-area {
height: 100%;
}
div#main {
max-width: 560px;
background: #2b303b;
border-radius: 5px;
height: 400px;
-webkit-box-shadow: 0px 0px 13px 0px rgba(50, 50, 50, 0.59);
-moz-box-shadow: 0px 0px 13px 0px rgba(50, 50, 50, 0.59);
box-shadow: 0px 0px 13px 0px rgba(50, 50, 50, 0.59);
overflow: hidden;
}
.holder {
overflow: auto;
}
.prompt {
color: #d28445;
}
input[type=text], input[type=text]:focus {
border: none;
padding: 0;
margin: 0;
height: 22px;
background: #2b303b;
color: #ebcb8b;
width: 80%;
}
p {
margin-bottom: 0;
line-height: 21px;
}
#bar {
height: 30px;
max-width: 560px;
background: black;
border-radius: 5px;
}
#content {
padding: 20px;
height: 100%;
}
</style>
</head>
<body>
<div id="bar" class='container'>
<svg height="20" width="100">
<circle cx="24" cy="14" r="5" fill="#bf616a" />
<circle cx="44" cy="14" r="5" fill="#ebcb8b" />
<circle cx="64" cy="14" r="5" fill="#a3be8c" />
</svg>
</div>
<div class="container" id="main">
<div class="holder">
<div id="content">
<div id="app"></div>
</div>
</div>
</div>
<script type="text/javascript" src="build/main.min.js"></script>
</body>
</html>