This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
138 lines (127 loc) · 4.82 KB
/
index.htm
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<title class="applicationTitle">Open Printing Kiosk</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="_style/font-awesome.css">
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,200,500,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="_style/font-awesome.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="_style/mui.min.css">
<link rel="stylesheet" href="_style/mui-colors.min.css">
<link rel="stylesheet" href="_style/home.css">
<link rel="stylesheet" href="_style/material-cards-auto-height.css">
<style type="text/css">
html {
position: relative;
min-height: 100%;
}
body {
background-color: #ECEFF1;
color: #37474F;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 2em;
}
h1, h2, h3 {
font-weight: 200;
}
.grid-item {
width: 390px;
padding: 15px;
}
</style>
</head>
<body>
<header class="mui-appbar mui--z1" style="z-index: 99;">
<div class="mui-container">
<table>
<tr class="mui--appbar-height">
<td class="mui--text-display3"><i class="material-icons" style="font-size: 1.3em !important; vertical-align: middle;">print</i> Open Printing Kiosk</td>
</tr>
</table>
</div>
</header>
<section class="container">
<div class="page-header">
<br>
</div>
<div class="row active-with-click grid">
<div class="grid-item">
<article class="material-card Green">
<h2>
<span><b>Visualizar ficheros</b></span>
</h2>
<div class="mc-content">
<div class="img-container" style="background-color: #F1BF26">
<iframe src='http://127.0.0.1:8088' height="490px" width="140%" frameborder="0" scrolling="no" style="margin-top:-90px;margin-left:-48px"></iframe>
</div>
<div class="mc-description">
...
</div>
</div>
</article>
</div>
<div class="grid-item">
<article class="material-card Orange">
<h2>
<span><b>Acceder a internet</b></span>
</h2>
<div class="mc-content">
<div class="img-container" style="background-color: #F1BF26;">
<a href="#internet"><i class="material-icons" style="font-size: 12em !important; padding: 15%;">cloud</i>
</div>
<div class="mc-description">
<p>Desde aquí, podrás navegar por internet e imprimir lo que necesites.</p>
</div>
</div>
</article>
</div>
<div class="grid-item">
<article class="material-card Red">
<h2>
<span><b>Salir de la aplicación</b></span>
</h2>
<div class="mc-content">
<div class="img-container" style="background-color: #ff7961";>
<a href="#exit"><i class="material-icons" style="font-size: 12em !important; padding: 15%;color: #ba000d
!important;">power_settings_new</i>
</div>
<div class="mc-description">
...
</div>
</div>
</article>
</div>
</div>
</section>
<footer>
<div class="mui-container mui--text-center mui--text-bottom">
<a class="btn btn-default" href="#5dmin" aria-label="Settings">
<i class="fa fa-cog" aria-hidden="true"></i> Administración
</a>
</div>
</footer>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="_scripts/mui.min.js"></script>
<script src="_scripts/ugui.js"></script>
<script src="_scripts/app.js"></script>
<script src="_scripts/jquery.material-cards.min.js"></script>
<script src="https://unpkg.com/masonry-layout@4.0/dist/masonry.pkgd.min.js"></script>
<script>
$(function() {
var $grid = $('.grid').masonry({
itemSelector: '.grid-item',
columnWidth: 390,
});
$('.material-card').materialCard();
$('.material-card').on('shown.material-card hidden.material-card', function (event) {
$grid.masonry();
});
});
</script>
</body>
</html>