-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimjer14.css
51 lines (44 loc) · 856 Bytes
/
primjer14.css
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
/*
* {
border: 1px solid black;
}
*/
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
font-weight: bold;
height: 380px;
width: 602px;
position: relative;
border: 2px solid black;
text-align: center;
}
.container div {
font-weight: normal;
text-align: center;
background-color: lightgoldenrodyellow;
width: 100px;
height: 100px;
border: 2px solid black;
border-radius: 25px;
position: absolute;
left: 0px;
transition-property: left, background-color;
transition-duration: 2s;
}
.timing1 {
transition-timing-function: linear;
}
.timing2 {
margin-top: 110px;
transition-timing-function: ease-in-out;
}
.timing3 {
margin-top: 220px;
transition-timing-function: ease-in;
}
.container:hover div {
background-color: red;
left: 500px;
}