-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task9.html
94 lines (92 loc) · 2.52 KB
/
Task9.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.total{
display: grid;
grid-template-columns: auto auto;
}
.two{
margin-top:50px;
}
.two-one{
background-color: green;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
margin:10px 0px;
height: 100px;
width: 80px;
}
.two-one:hover{
background-color: green;
border-radius:10px;
margin:10px;
height: 100px;
width: 100px;
}
.two-two{
background-color: skyblue;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
margin:10px 0px;
height: 100px;
width: 80px;
}
.two-two:hover{
background-color: skyblue;
border-radius:10px;
margin:10px;
height: 100px;
width: 100px;
}
.two-three{
background-color: red;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
margin: 10px 0px;
height: 100px;
width: 80px;
}
.two-three:hover{
background-color: red;
border-radius:10px;
margin: 10px;
height: 100px;
width: 100px;
}
.two-four{
background-color: black;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
margin: 10px 0px;
height: 100px;
width: 80px;
}
.two-four:hover{
background-color: black;
border-radius:10px;
margin: 10px;
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<h2>Task 4</h2>
<div class="total">
<div class="two">
<div class="two-one"></div>
<div class="two-two"></div>
<div class="two-three"></div>
<div class="two-four"></div>
</div>
<div class="one">
<h2>Hoverable Sidenav Buttons</h2>
<p>Hover over the button in the left side navigation to open them.</p>
</div>
</div>
</body>
</html>