Merge branch 'master' into docker

This commit is contained in:
adolfintel 2018-08-07 07:24:34 +02:00
commit 03690a4638
2 changed files with 23 additions and 6 deletions

View file

@ -88,7 +88,7 @@
display:inline-block; display:inline-block;
} }
#shareArea{ #shareArea{
width:100%; width:95%;
max-width:40em; max-width:40em;
margin:0 auto; margin:0 auto;
margin-top:2em; margin-top:2em;
@ -285,7 +285,7 @@ function initUI(){
<div id="shareArea" style="display:none"> <div id="shareArea" style="display:none">
<h3>Share results</h3> <h3>Share results</h3>
<p>Test ID: <span id="testId"></span></p> <p>Test ID: <span id="testId"></span></p>
<input type="text" value="" id="resultsURL" readonly="readonly" onclick="this.select()"/> <input type="text" value="" id="resultsURL" readonly="readonly" onclick="this.select();this.focus();this.select();document.execCommand('copy');alert('Link copied')"/>
<img src="" id="resultsImg" /> <img src="" id="resultsImg" />
</div> </div>
</div> </div>

View file

@ -15,8 +15,8 @@ header('Content-Type: text/html; charset=utf-8');
width:100%; min-height:100%; width:100%; min-height:100%;
} }
html{ html{
background-color:#304090; background-color: hsl(198,72%,35%);
font-family:Sans-Serif; font-family: "Segoe UI","Roboto",sans-serif;
} }
body{ body{
background-color:#FFFFFF; background-color:#FFFFFF;
@ -24,12 +24,29 @@ header('Content-Type: text/html; charset=utf-8');
width:100%; width:100%;
max-width:70em; max-width:70em;
margin:4em auto; margin:4em auto;
box-shadow:0 0 20em #00000040; box-shadow:0 1em 6em #00000080;
padding:1em 1em 4em 1em; padding:1em 1em 4em 1em;
border-radius:0.4em; border-radius:0.4em;
} }
h1,h2,h3,h4,h5,h6{
font-weight:300;
margin-bottom: 0.1em;
}
h1{
text-align:center;
}
table{ table{
margin:4em 0; margin:2em 0;
width:100%;
}
table, tr, th, td {
border: 1px solid #AAAAAA;
}
th {
width: 6em;
}
td {
word-break: break-all;
} }
</style> </style>
</head> </head>