-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pather.html
105 lines (87 loc) · 1.89 KB
/
er.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Er </title>
<style type="text/css">
body
{
/*background-image: linear-gradient(35deg,lightblue,brown);*/
background: #7F7FD5;
background: -webkit-linear-gradient(to left, #91EAE4, #86A8E7, #7F7FD5);
background: linear-gradient(to left, #91EAE4, #86A8E7, #7F7FD5);
}
::-webkit-scrollbar
{
width: 0px;
}
nav
{
font-size: 50px;
letter-spacing: 2px;
text-align: center;
font-family: 'Calistoga', cursive;
font-style: italic;
color: lightgreen;
-webkit-animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
animation-duration: 5s;
}
@keyframes tracking-in-contract
{
0%
{
letter-spacing: 1em;
opacity: 0;
}
40%
{
opacity: 0.6;
}
100%
{
letter-spacing: normal;
opacity: 1;
}
}
.flexbox
{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.image
{
margin: 50px;
/*height: 300px;
width: 560px;*/
height: 85%;
width: 90%;
border-radius: 50px;
}
.i1
{
margin: 50px;
height: 995px;
width: 677px;
border-radius: 50px;
}
.image:hover
{
box-shadow: -20px 20px 60px white, 20px -20px 60px white;
}
.i1:hover
{
box-shadow: -20px 20px 60px white, 20px -20px 60px white;
}
</style>
</head>
<body>
<nav> Entity RelationShip Model </nav>
<div class="flexbox">
<img src="https://mjnvsai.github.io/Database-Management/Media/ER_6.png" class="image" alt = "ER - model">
</div>
</body>
</html>