-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle35.css
More file actions
43 lines (36 loc) · 973 Bytes
/
style35.css
File metadata and controls
43 lines (36 loc) · 973 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
/* @format */
/*
.box{
background-color: cadetblue;
height: 100px;
width: 100px;
margin: auto;
/* transition-property: height width; */
/* transition-property: height; */
/* transition-property: width; */
/* transition-property: all; */
/* transition-duration: 3s; */
/* transition-delay: 2s; */
/*}
/* div.box:hover{
height: 250px;
width: 250px;
background-image: linear-gradient(45deg, rgb(25, 25, 161), green);
border-radius: 50%;
} */
/* transition-timing-function */
.box1{
height: 80px;
width: 80px;
background-color: brown;
transition-property: width;
transition-duration: 4s;
/* transition-timing-function: ease; */
/* transition-timing-function: ease-in; */
/* transition-timing-function: ease-out; */
/* transition-timing-function: ease-in-out; */
transition-timing-function: linear;
}
.box1:hover{
width: 350px;
}