Skip to content

Commit 7bd4c73

Browse files
committed
saving css new
1 parent 1074b5f commit 7bd4c73

File tree

2 files changed

+77
-11
lines changed

2 files changed

+77
-11
lines changed

data/index-new.css

Lines changed: 70 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
***************************************************************************
3-
** Program : index.css, part of ESP_ticker
4-
** Version : v0.7.5
3+
** Program : index.css, part of OTGW-firmware
4+
** Version : v0.7.6
55
**
6-
** Copyright (c) 2020 Willem Aandewiel
6+
** Copyright (c) 2020 Robert van den Breemen
77
**
88
** TERMS OF USE: MIT License. See bottom of file.
99
***************************************************************************
@@ -273,8 +273,57 @@ input {
273273
}
274274
}
275275

276+
/* PIC firmware page */
277+
#table {
278+
display: table;
279+
padding: 5px;
280+
}
281+
.picrow {
282+
display: table-row;
283+
padding: 5px;
284+
}
285+
.piccolumn1 {
286+
display: table-cell;
287+
width: 150px;
288+
margin: 5px;
289+
}
290+
.piccolumn2 {
291+
display: table-cell;
292+
width: 75px;
293+
margin: 5px;
294+
}
295+
.piccolumn3 {
296+
display: table-cell;
297+
width: 100px;
298+
margin: 5px;
299+
}
300+
.piccolumn4 {
301+
display: table-cell;
302+
padding-left: 5px;
303+
width: 16px;
304+
margin: 5px;
305+
}
306+
.piccolumn5 {
307+
display: table-cell;
308+
width: 16px;
309+
padding-left: 5px;
310+
padding-right: 5px;
311+
margin: 5px;
312+
}
313+
314+
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
315+
@media screen and (max-width: 600px) {
316+
.column {
317+
width: 100%;
318+
}
319+
}
320+
276321

277322
/* OTmonitor */
323+
#table {
324+
display: table;
325+
padding: 5px;
326+
}
278327
.otmonrow {
279328
background: lightblue;
280329
display: table-row;
@@ -296,9 +345,26 @@ input {
296345
float: left;
297346
width: 30px;
298347
margin-left: 2px;
348+
padding-right: 5px;
349+
}
350+
.otmoncolumn4 {
351+
display: table-cell;
352+
float: left;
353+
width: 30px;
354+
margin-left: 2px;
355+
}
356+
.devinforow:after {
357+
content: "";
358+
display: table;
359+
clear: both;
360+
background: lightblue;
299361
}
300362

301363
/* DevInfo */
364+
#table {
365+
display: table;
366+
padding: 5px;
367+
}
302368
.devinfonrow {
303369
background: lightblue;
304370
display: table-row;
@@ -353,4 +419,4 @@ button { width: 100px; }
353419
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
354420
*
355421
***************************************************************************
356-
*/
422+
*/

version.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#define _VERSION_MAJOR 0
33
#define _VERSION_MINOR 7
44
#define _VERSION_PATCH 6
5-
#define _VERSION_BUILD 686
5+
#define _VERSION_BUILD 687
66
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
7-
#define _VERSION_DATE "21-02-2021"
8-
#define _VERSION_TIME "14:11:41"
7+
#define _VERSION_DATE "22-02-2021"
8+
#define _VERSION_TIME "08:04:45"
99
#define _SEMVER_CORE "0.7.6"
10-
#define _SEMVER_BUILD "0.7.6+686"
11-
#define _SEMVER_FULL "0.7.6+686"
12-
#define _SEMVER_NOBUILD "0.7.6 (21-02-2021)"
13-
#define _VERSION "0.7.6+686 (21-02-2021)"
10+
#define _SEMVER_BUILD "0.7.6+687"
11+
#define _SEMVER_FULL "0.7.6+687"
12+
#define _SEMVER_NOBUILD "0.7.6 (22-02-2021)"
13+
#define _VERSION "0.7.6+687 (22-02-2021)"
1414
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver

0 commit comments

Comments
 (0)