mapcomplete/customGenerator.html

109 lines
2.3 KiB
HTML
Raw Normal View History

2020-08-08 19:17:17 +00:00
<!DOCTYPE html>
<html lang="en">
2020-08-08 19:17:17 +00:00
<head>
2020-12-23 18:00:14 +00:00
<meta charset="UTF-8">
2020-08-08 19:17:17 +00:00
<link href="index.css" rel="stylesheet"/>
2020-09-12 21:15:17 +00:00
<link href="css/tabbedComponent.css" rel="stylesheet"/>
2020-08-08 19:17:17 +00:00
<title>Custom Theme Generator for Mapcomplete</title>
<style type="text/css">
img {
min-width: 35px;
min-height: 35px;
}
input{
border: 0.5px solid #939393;
}
.icon-preview {
max-width: 2em;
max-height: 2em ;
}
.image-large-preview {
max-width: 100%;
max-height: 30vh;
}
.json{
width:100%;
box-sizing: border-box;
}
2020-08-08 19:17:17 +00:00
.bordered {
border: 1px solid black;
display:block;
padding: 0.5em;
border-radius: 0.5em;
2020-09-02 09:37:34 +00:00
box-sizing: border-box;
2020-08-08 19:17:17 +00:00
}
2020-09-02 09:37:34 +00:00
.tag-input-row {
display: block ruby;
box-sizing: border-box;
margin-right: 2em;
2020-09-02 09:37:34 +00:00
width: calc(100% - 3em);
padding-right: 0.5em;
height: min-content;
}
.min-height {
display: block;
height: min-content;
}
.main-tabs{
height: 100vh;
}
.tab-content {
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
margin-left: 0.5em;
}
.main-tabs > .tabs-header-bar {
background: #eee;
}
.scrollable {
display: block;
overflow-y: scroll;
height: calc(100vh - 9em - 10px);
}
.main-tabs > .tab-content {
display: block;
height: 100%;
padding-bottom: 0 ;
padding-right: 0;
}
.main-tabs > .tab-content > span{
display: block;
height: 100%;
}
2020-08-08 19:17:17 +00:00
body {
height: 100%;
}
2020-09-02 09:37:34 +00:00
#maindiv {
height: calc(100% - 6em);
}
2020-08-08 19:17:17 +00:00
</style>
</head>
<body>
2020-09-02 09:37:34 +00:00
<div id="maindiv">
2020-12-07 02:02:50 +00:00
Loading the MapComplete custom theme builder...<br/>
If this message persists, make sure javascript is enabled and no script blocker is blocking this.
2020-08-08 19:17:17 +00:00
</div>
<script src="./customGenerator.ts"></script>
</body>
</html>