-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·124 lines (116 loc) · 3.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OSHMI</title>
<meta name="description" content="OSHMI - Open Substation HMI">
<meta name="author" content="Ricardo Olsen">
<link rel="shortcut icon" type="image/x-icon" href="htdocs/images/favicon.ico"/>
<style>
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(htdocs/lib/SourceSansPro-Regular.woff2) format('woff2');
}
.blocks {
display: flex;
flex: 0 1 min-content;
position: relative;
float: left;
flex-wrap: wrap;
background-color: rgb(141, 160, 182);
color: white;
vertical-align: middle;
margin: 5px;
padding: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius: 3px;
transition: 1s;
}
h1 {
text-align: center;
}
a {
text-align: center;
}
a:link {
text-decoration: none;
color: inherit;
}
a:visited {
text-decoration: none;
color: inherit;
}
a:hover {
text-decoration: underline;
color: inherit;
}
a:active {
text-decoration: underline;
color: inherit;
}
body {
font-family: Source Sans Pro, helvetica, arial;
font-size: 20px;
background: linear-gradient(to bottom, #deefff 0%,#98bede 100%);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
html {
height: 100%;
}
</style>
</head>
<body>
<h1>
OSHMI - Open Substation HMI
</h1>
<div class='blocks'>
<a target='_blank' href='htdocs/about.html'>
<img height=40 src='htdocs/images/oshmi.svg'><br>About OSHMI
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/screen.html'>
<img height=40 src='htdocs/images/tela.png'><br>Screen Viewer
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/tabular.html?SELMODULO=TODOS_ANORMAIS'>
<img height=40 src='htdocs/images/firstaid.svg'><br>Alarms Viewer
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/events.html'>
<img height=40 src='htdocs/images/chrono.svg'><br>Events Viewer
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/tabular.html'>
<img height=40 src='htdocs/images/tabular.svg'><br>Tabular Viewer
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/histwebview/histwebview.php'>
<img height=40 src='htdocs/images/plot.svg'><br>Curves Viewer
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/listdocs.php'>
<img height=40 src='htdocs/images/help2.svg'><br>Documents
</a>
</div>
<div class='blocks'>
<a target='_blank' href='htdocs/listlogs.php'>
<img height=40 src='htdocs/images/info.svg'><br>Log Files
</a>
</div>
<div class='blocks' title='Requires Addon!'>
<a target='_blank' href='grafana'>
<img height=40 src='htdocs/images/grafana.ico'><br>Grafana Dashboards
</a>
</div>
</body>
</html>