forked from hull-ships/hull-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
84 lines (83 loc) · 1.73 KB
/
admin.html
File metadata and controls
84 lines (83 loc) · 1.73 KB
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
<html>
<head>
<title>Computed traits Ship</title>
<link rel="stylesheet" href="//dd04rofzygnm0.cloudfront.net/releases/master/865f04865d2448286626bac92c518a8f8ea8bafe/stylesheets/neue.css" />
<link rel="stylesheet" href="/codemirror.css" />
<script src="//js.hull.io/0.10.0/hull.js"></script>
<script src="/admin.js"></script>
<style>
.CodeMirror {
border: 1px solid #eee;
height: auto;
font-size: 12px;
}
.userPane .CodeMirror{
height: calc( 100% - 80px );
}
.resultPane .ReactCodeMirror {
min-height: 60px;
height: 50%;
}
.fieldPillContainer{
position: relative;
height: calc(100vh - 82px);
}
.fieldPill {
opacity: .6;
position: absolute;
right: 16px;
background: #eee;
z-index: 10;
padding: 5px 10px;
color: #3f4654;
border-radius: 20px;
}
hr{
margin: 10px 0;
}
body{
background-color: white;
height: 100%;
}
pre{
margin:0;
}
.well{
padding:0;
}
@media (min-width: 768px) {
.flexRow{
flex-direction: row;
display: flex;
}
.flexColumn{
display: flex;
flex-direction: column;
flex: 1 1 0;
padding: 0 10px;
}
}
.flexGrow{
flex-grow:1;
}
.input-group-btn,
.input-group-addon{
vertical-align: top;
}
.input-group input.form-control-sm[type='text'].form-control{
padding-top: 0;
padding-bottom: 11px;
}
.CodeMirror pre {
font-size: 11px;
line-height:1.2;
}
.grid{
height: 100vh;
}
</style>
</head>
<body>
<div id="app"><div class='text-center pt-2'><h4>Loading...</h4></div></div>
</body>
</html>