-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathorientation.html
More file actions
56 lines (46 loc) · 1.02 KB
/
Copy pathorientation.html
File metadata and controls
56 lines (46 loc) · 1.02 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
<!doctype html>
<html>
<head>
<title>Orientation</title>
<meta name="viewport" content="width=device-width">
<style type="text/css" media="screen">
ul{
list-style-type: none;
}
li{
padding: 1em;
}
@media screen and (orientation:landscape){
li{
float: left;
}
}
.box{
background-color: green;
width: 100px;
height: 150px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.box:hover{
background-color: blue;
width: 150px;
height: 200px;
}
</style>
</head>
<body>
<h1>Orientation</h1>
<div id="covers">
<ul>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
</ul>
</div>
</body>
</html>