-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTASK7CSS.html
More file actions
88 lines (85 loc) · 2.52 KB
/
TASK7CSS.html
File metadata and controls
88 lines (85 loc) · 2.52 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
<html>
<head>
<title></title>
<style>
#i1{
background-color: green;
height:70px;
width: 60px;
content: "";
margin-bottom: 12px;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
#i1:hover{
opacity: 0.5;
}
#i2{
background-color: blue;
height:70px;
width: 60px;
content: "";
margin-bottom: 12px;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
#i2:hover{
opacity: 0.5;
}
#i3{
background-color: red;
height:70px;
width: 60px;
content: "";
margin-bottom: 12px;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
#i3:hover{
opacity: 0.5;
}
#i4{
background-color: black;
height:70px;
width: 60px;
content: "";
margin-bottom: 12px;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
#i4:hover{
opacity: 0.5;
}
.a{
width: 20px;
float: left;
padding-top: 30px;
}
.b{
float: left;
width: 500px;
padding-left: 100px;
padding-top: 15px;
}
.c{
border: 2px solid black;
width: 650px;
height: 450px;
margin: auto;
margin-top: 120px;
box-shadow: 0px 10px 4px -5px #c0b7b7 inset;
}
</style>
</head>
<body>
<div class="c">
<div class="a">
<div id="i1"></div>
<div id="i2"></div>
<div id="i3"></div>
<div id="i4"></div>
</div>
<div class="b"><h1>Hoverable Sidenav Buttons</h1><br>Hover over the buttons in the left side navigation to open them.</div>
</div>
</body>
</html>