-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmesa.css
More file actions
64 lines (54 loc) · 1.23 KB
/
mesa.css
File metadata and controls
64 lines (54 loc) · 1.23 KB
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
body {
font-size: 120px;
color: black;
text-align: left;
animation-name: bgcchange;
animation-duration: 6s;
animation-iteration-count: infinite;
}
@keyframes bgcchange {
0% {background-color: red;}
50% {background-color: #d4ccff;}
100% {background-color: red;}
}
@keyframes bouncerotate {
0% {position: absolute; left: 0px; bottom: 0px; -webkit-transform: rotateY(0deg);}
50% {position: absolute; left: 700px; bottom: 400px; -webkit-transform: rotateY(180deg);}
100% {position: absolute; left: 0px; bottom:0px; -webkit-transform: rotateY(0deg);}
}
.luz {
width: 400px;
height: auto;
position:fixed;
top:500px;
right:0px;
transform: rotate(90deg);
}
.lesley {
width: 50%;
height: auto;
animation-name: bouncerotate;
animation-duration: 3s;
animation-iteration-count: infinite;
}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotateY(0deg);
}
to {
-webkit-transform: rotateY(360deg);
}
}
.susan {
font-size: 16px;
color: white;
}
/*.lesley:hover {
-webkit-animation-name: rotate;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}*/
.priscilla {
color: blue;
}