-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtransform.css
More file actions
33 lines (31 loc) · 632 Bytes
/
transform.css
File metadata and controls
33 lines (31 loc) · 632 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
*, *::before, *::after{
box-sizing: border-box;
margin-top: 0;
}
a[href]{
color: orange;
}
.container{
display: flex;
justify-content: center;
align-items: center;
background-color: bisque;
height: 80vh;
}
.box{
display: flex;
align-items: center;
justify-content: center;
background-color: aquamarine;
height: 150px;
width: 150px;
transition: all .1s ease-in;
font-size: 120px;
}
.box:hover{
transform: rotate(45deg);
/* transform: skew(45deg); */
/* transform: scale(2);*/
/* transform: translateX(50px); */
/* transform: translateY(50px); */
}