-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_visual_portal.html
46 lines (32 loc) · 1.75 KB
/
user_visual_portal.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='for_user_styles.css')}}">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<title>User portal</title>
</head>
<body>
<style>
.zoom {
padding: 0px;
transition: transform .2s; /* Animation */
width: auto;
height: auto;
margin: 100px;
padding: 0 0 0 0;
box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.5);
}
.zoom:hover {
transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
</style>
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image.png", class = 'zoom'>
<!--<p>{{ to_print }}</p>-->
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image1.png", class = 'zoom'>
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image2.png", class = 'zoom'>
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image3.png", class = 'zoom'>
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image4.png", class = 'zoom'>
<img src="https://www.pythonanywhere.com/user/sanyasin/files/home/sanyasin/mysite/static/image5.png", class = 'zoom'>
</body>
</html>