-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio4.css
More file actions
69 lines (59 loc) · 954 Bytes
/
ejercicio4.css
File metadata and controls
69 lines (59 loc) · 954 Bytes
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
html{
background-color: #666;
}
ul {
margin-top: 50px;
list-style-type: none;
padding: 0;
}
li {
text-align: center;
display: inline-block;
width: 150px;
height: 150px;
margin: 15px;
position: relative;
background-color: #ccf;
box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
a{
text-decoration: none;
color: black;
display: block;
width: 100%;
height: 100%;
padding: 10px;
box-sizing: border-box;
}
h2{
font-size: 1em;
}
p{
font-size: 1.5em;
}
li:nth-child(1),
li:nth-child(5),
li:nth-child(7) {
background-color: #ffc;
}
li:nth-child(2),
li:nth-child(4),
li:nth-child(8) {
background-color: #cfc;
}
li:nth-child(2),
li:nth-child(4),
li:nth-child(6),
li:nth-child(8) {
transform: rotate(10deg);
}
li:nth-child(1),
li:nth-child(3),
li:nth-child(5),
li:nth-child(7) {
transform: rotate(-10deg);
}
li:hover{
transform: scale(1.4);
z-index: 1;
}