Init WebCG
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Example App</title>
|
||||
|
||||
<style>
|
||||
.itemrow {
|
||||
border: 0px solid green;
|
||||
border-radius: 0px;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-bottom: 1px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.itemrow:nth-child(odd) {
|
||||
background: rgb(75, 75, 75);
|
||||
}
|
||||
|
||||
.itemrow:nth-child(even) {
|
||||
background: rgb(46, 43, 43);
|
||||
}
|
||||
|
||||
.list {
|
||||
border: 0px solid red;
|
||||
width: 500px;
|
||||
padding: 2px
|
||||
}
|
||||
|
||||
.spx_input {
|
||||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
||||
font-size: 1.2rem;
|
||||
line-height: 12px;
|
||||
border: 0px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
padding: 2px;
|
||||
width: 47%;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
|
||||
.input_active {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: rgb(236, 224, 171);
|
||||
outline: blue 2px;
|
||||
}
|
||||
|
||||
.input_deactive {
|
||||
background-color: rgba(1, 1, 1, 0);
|
||||
outline: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
{{>navi}}
|
||||
|
||||
|
||||
{{{body}}}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,172 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Choose a file</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #444;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
font-size: 1.6vw;
|
||||
}
|
||||
|
||||
.spxMainPanel {
|
||||
height: 55vw;
|
||||
display: table;
|
||||
width: 100%;
|
||||
max-width: 2000px;
|
||||
text-align: center;
|
||||
border: 0px solid yellow;
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.spxTopRow {
|
||||
display: table-row;
|
||||
height: 4em;
|
||||
color: white;
|
||||
border: 1px solid yellowgreen;
|
||||
}
|
||||
|
||||
.spxBottomRow {
|
||||
display: table-row;
|
||||
height: 12.5em;
|
||||
/* background: rgb(9, 36, 9); */
|
||||
color: beige;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.spxMainSection {
|
||||
height: 100%;
|
||||
display: table-cell;
|
||||
width: 100%;
|
||||
vertical-align: middle;
|
||||
border: 2px solid green;
|
||||
}
|
||||
|
||||
.spxCell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
margin: 10px !important;
|
||||
text-align: left;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.spxPanelL {
|
||||
width: 50%;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.spxPanelC {
|
||||
width: 0.1em;
|
||||
/* background: red; */
|
||||
color: white;
|
||||
}
|
||||
|
||||
.spxPanelR {
|
||||
color: white;
|
||||
border-left: 2px solid grey;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.headlineArea {
|
||||
border-top: 2px solid grey;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.btn {
|
||||
padding: 0.5em 1.0em;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 1em;
|
||||
color: white;
|
||||
border: 2px solid rgb(255, 255, 255, 0.0);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
border: 2px solid black;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
|
||||
.darkBg {
|
||||
background-color: rgba(0, 0, 0, 0.2)
|
||||
}
|
||||
|
||||
.bg_green {
|
||||
background-color: #54af3c;
|
||||
}
|
||||
|
||||
.bg_yellow {
|
||||
background-color: #e5c310;
|
||||
}
|
||||
|
||||
.bg_blue {
|
||||
background-color: #375ea3;
|
||||
}
|
||||
|
||||
.bg_red {
|
||||
background-color: #c80019;
|
||||
}
|
||||
|
||||
.bg_black {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.bg_white {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.bg_grey60 {
|
||||
background-color: #2f303e;
|
||||
}
|
||||
|
||||
.bg_grey40 {
|
||||
background-color: #444758;
|
||||
}
|
||||
|
||||
.bg_grey15 {
|
||||
background-color: #706e83;
|
||||
}
|
||||
|
||||
.headlineinput {
|
||||
padding: 0.2em;
|
||||
background-color: inherit;
|
||||
border: 0;
|
||||
font-family: inherit;
|
||||
font-size: 1.4em;
|
||||
margin: 0px;
|
||||
color: inherit;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body class="bg_black">
|
||||
<div class="spxMainPanel bg_grey60">
|
||||
|
||||
<H1></H1>
|
||||
|
||||
{{{body}}}
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user