add: add playground application

This commit is contained in:
Géry Debongnie
2019-03-28 14:01:49 +01:00
parent afc89e6f66
commit 9e7a8d9a63
9 changed files with 37219 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
html,
body {
height: 100%;
}
body {
margin: 0;
}
.playground {
display: grid;
height: 100%;
width: 100%;
grid-template-columns: 50% 50%;
}
.left-bar {
position: relative;
background-color: gray;
}
.left-bar > button {
position: absolute;
top: 15px;
left: 50px;
width: 100px;
height: 25px;
}
.code-editor {
position: absolute;
top: 50px;
right: 0;
left: 0;
bottom: 0;
}
.content iframe {
width: 100%;
height: 100%;
}