-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_ui.html
105 lines (84 loc) · 2.91 KB
/
test_ui.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
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap" rel="stylesheet">
<style>
body {
background-color: #d9d9d9;
}
.thumbnail {
width: 320px;
height: 240px;
}
.image {
width: 100%;
height: 100%;
}
.image img {
-webkit-transition: all 1s ease; /* Safari and Chrome */
-moz-transition: all 1s ease; /* Firefox */
-ms-transition: all 1s ease; /* IE 9 */
-o-transition: all 1s ease; /* Opera */
transition: all 1s ease;
}
.image:hover img {
-webkit-transform:scale(1.25); /* Safari and Chrome */
-moz-transform:scale(1.25); /* Firefox */
-ms-transform:scale(1.25); /* IE 9 */
-o-transform:scale(1.25); /* Opera */
transform:scale(1.25);
}
</style>
</head>
<body>
<p></p>
<div style="background: ghostwhite; font-size: 20px; padding: 10px; border: 2px solid lightgray; margin: 10px;">
<p>CAMERA FEEDS</p>
<center>
<img src="images/auto_bin.png" width="175">
<img src="images/auto_bin.png" width="175">
<img src="images/auto_bin.png" width="175">
<img src="images/fryer.png" width="336">
<img src="images/fryer.png" width="336">
<img src="images/fryer.png" width="336">
</center>
<!-- ------------------------------------------------- -->
<!-- <div class="thumbnail">
<div class="image">
<img src="images/auto_bin.png" width="175">
</div>
</div>
</div>
<div class="thumbnail">
<div class="image">
<img src="images/auto_bin.png" width="175">
</div>
</div>
</div>
<div class="thumbnail">
<div class="image">
<img src="images/auto_bin.png" width="175">
</div>
</div>
</div>
<div class="thumbnail">
<div class="image">
<img src="images/fryer.png" width="336">
</div>
</div>
</div>
<div class="thumbnail">
<div class="image">
<img src="images/fryer.png" width="336">
</div>
</div>
</div>
<div class="thumbnail">
<div class="image">
<img src="images/fryer.png" width="336">
</div>
</div>
</div> -->
<!-- ---------------------------------------------------- -->
<button style="color:white"><a href="[JIRA BASE URL]/secure/CreateIssueDetails!init.jspa?[ARGUMENTS]" style="text-decoration: none; color:black; font-family: Poiret One;">CREATE TICKET</a></button>
</body>
</html>