-
Notifications
You must be signed in to change notification settings - Fork 0
/
officestationary.php
executable file
·66 lines (46 loc) · 1.92 KB
/
officestationary.php
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
<!Doctype html>
<html>
<head>
<style type="text/css">
.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}
.thumbnail{
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.thumbnail:hover{
background-color: #90caf9;
border-radius: 50%;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.thumbnail:hover img{
border: 1px solid white;
}
}
</style>
</head>
<body>
<h3 class="black-text">Writing Items available in the store</h3>
<div class="gallerycontainer">
<a class="thumbnail " target="_blank" href="images/ballpen.jpg"><img src="images/ballpen.jpg" style="border-radius:100px" width="300px" height="100px" border="0" /><span>BALLPEN</span></a>
<a class="thumbnail " target="_blank" href="images/glitter.jpg"><img src="images/glitter.jpg" width="150px" height="100px" border="0" /><span>GLITTER</span></a>
<a class="thumbnail " target="_blank" href="images/marker.jpg"><img src="images/marker.jpg" width="170px" height="100px" border="0" /><span>MARKER</span></a>
<a class="thumbnail " target="_blank" href="images/gelpen.jpg"><img src="images/gelpen.jpg" width="130px" height="100px" border="0" /><span>GELPEN</span></a>
<a class="thumbnail " target="_blank" href="images/chalk.jpg"><img src="images/chalk.jpg" width="150px" height="100px" border="0" /><span>CHALK PIECES</span></a>
<a class="thumbnail " target="_blank" href="images/highlighter.jpg"><img src="images/highlighter.jpg" width="170px" height="100px" border="0" /><span>HIGHLIGHTER</span></a>
</div>
</body>
</html>