-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsat.css
More file actions
40 lines (40 loc) · 784 Bytes
/
sat.css
File metadata and controls
40 lines (40 loc) · 784 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
body{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: aqua;
padding: 20PX;
}
h1{
color: #333;
margin-bottom: 20px;
}
.box {
width: 250px;
height: 250px;
background-color: rgb(71, 215, 63);
margin: 20px auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
border-radius: 50%;
transition: transform 0.5s ease;
}
/* .rotate3d{
border: 20px solid blue;
} */
.box.translate:hover{
transform: translate(50px,50px);
}
.box.rotate:hover{
transform: rotate(45deg);
}
.box.scale:hover{
transform:(1.5, 1.5);
}
.box.skew:hover{
transform: skew(30deg, 10deg);
}
.box,.rotate3d:hover{
transform: rotateX(45deg) rotateY(45deg) rotateZ(45deg);
}