-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (102 loc) · 3.82 KB
/
index.html
File metadata and controls
108 lines (102 loc) · 3.82 KB
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
<script src="imageHoverEffect.js" type="text/javascript"></script>
<html>
<head>
<meta charset="UTF-8">
<title>uncool's hideout</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all">
<style>
.container{
display: flex;
align-items: start;
justify-content: center;
margin-top: 24px;
}
.center-image{
width: 900px;
height: 700px;
background-image: url("img/main_page/device_dithered.png");
display: flex;
align-items: center;
justify-content: center;
}
.side-images{
display: flex;
flex-direction: column;
}
.jelly1{
background-image: url("img/main_page/Jelly_frame_1.png");
width: 200px;
height: 200px;
}
.jelly1:hover{
background-image: url("img/main_page/Jelly_frame_2.png");
width: 200px;
height: 200px;
}
.blubby{
background-image: url("img/main_page/blubby_frame_1.png");
width: 200px;
height: 200px;
}
.blubby:hover{
background-image: url("img/main_page/blubby_frame_2.png");
width: 200px;
height: 200px;
}
.shapey{
background-image: url("img/main_page/Shapey_frame_1.png");
width: 200px;
height: 200px;
}
.shapey:hover{
background-image: url("img/main_page/Shapey_frame_2.png");
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div class="container">
<div class="side-navbar">
<div class="navbar-item"
onmouseover="showImage('hover-image', 'img/main_page/Palette.png')"
onmouseout="hideImage('hover-image')">
<a href="gallery.html">gallery</a>
</div>
<div class="navbar-item"
onmouseover="showImage('hover-image', 'img/main_page/Updates.png')"
onmouseout="hideImage('hover-image')">
<a href="updates.html">updates</a>
</div>
<div class="navbar-item"
onmouseover="showImage('hover-image', 'img/main_page/Lightbulb.png')"
onmouseout="hideImage('hover-image')">
<a href="inspiration.html">inspiration corner</a>
</div>
<div class="navbar-item"
onmouseover="showImage('hover-image', 'img/main_page/About.png')"
onmouseout="hideImage('hover-image')">
<a href="about.html">about</a>
</div>
<div class="navbar-item"
onmouseover="showImage('hover-image', 'img/main_page/Links.png')"
onmouseout="hideImage('hover-image')">
<a href="links.html">contact/links</a>
</div>
</div>
<div class="center-image">
<div id="hover-image">
</div>
</div>
<div class="side-images">
<div class="jelly1"></div>
<div class="blubby"></div>
<div class="shapey"></div>
</div>
</div>
<p style="text-align: center; color:aliceblue">this website is best viewed on desktop.
<br />
<a href="mailto:uncoolanduncouth@gmail.com">contact me</a>
</p>
</body>
</html>