-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Task4.html
More file actions
65 lines (65 loc) · 1.99 KB
/
Copy pathCSS_Task4.html
File metadata and controls
65 lines (65 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.sidenav a{
padding: 20px;
left: 0px;
text-decoration: none;
transition: 0.5s;
color: transparent;
}
a{
border-radius: 0 5px 5px 0;
}
#About{
position: absolute;
top: 25px;
background-color: green;
padding-bottom: 25px;
}
#Blog{
position: absolute;
top: 90px;
background-color: rgb(96, 96, 246);
padding: 25px;
}
#Projects{
position: absolute;
top: 160px;
background-color: red;
padding-right: 10px;
padding-bottom: 25px;
padding-top: 25px;
}
#Contact{
position: absolute;
top: 230px;
background-color: grey;
padding-right: 12px;
padding-bottom: 25px;
}
.sidenav a:hover{
width: 17.5%;
color: black;
}
</style>
</head>
<body>
<div class="sidenav">
<a href="#" id="About">About</a>
<a href="#" id="Blog">Blog</a>
<a href="#" id="Projects">Projects</a>
<a href="#" id="Contact">Contact</a>
</div>
<div style="margin-left:80px;">
<h2>Hoverable Sidenav Buttons</h2>
<p>Hover over the buttons in the left side navigation to open them.</p>
</div>
</body>
</html>