-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio1.css
More file actions
68 lines (54 loc) · 866 Bytes
/
ejercicio1.css
File metadata and controls
68 lines (54 loc) · 866 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
div{
border: 3px solid black;
border-radius: 20px;
width: 100px;
padding: 10px;
margin: 20px;
text-align: center;
background-color: orange;
float: left;
}
img{
width: 100px;
}
h2{
/* Reducir tamaño de la letra */
font-size: 1em;
}
#rotar1{
transform: rotate(50deg);
}
#rotar2{
transform: rotate(-50deg);
}
#escala1{
transform: scale(0.5);
}
#escala2{
transform: scale(0.5, 1);
}
#skewX1{
transform: skewX(30deg);
margin-left: 40px;
}
#skewX2{
transform: skewX(-30deg);
margin-left: 50px;
}
#skewY1{
transform: skewY(30deg);
margin-left: 40px;
}
#skewY2{
transform: skewY(-30deg);
margin-left: 50px;
}
#translate1{
transform: translate(15px, 25px);
}
#translate2{
transform: translate(15px, -25px);
}
#contentBox1:hover{
transform: skewX(-30deg);
}