-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
134 lines (108 loc) · 2.17 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*#videos-container{
display:none;
}*/
#alien{
display:none;
}
h1, h2, section {
border-bottom: none;
}
audio, video {
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
-webkit-transition: all 1s ease;
transition: all 1s ease;
vertical-align: top;
}
input {
border: 1px solid #d9d9d9;
border-radius: 1px;
font-size: 1em;
margin: .2em;
width: 30%;
font-family: 'Product Sans'
}
.setup {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
font-size: 50%;
height: 35px;
margin-left: -9px;
margin-top: 8px;
position: absolute;
}
p {
padding: 1em;
}
li {
padding: .5em;
}
.highlight {
color: rgb(0, 8, 189);
}
@keyframes float {
0% {
/* box-shadow: 0 5px 0px 0px rgba(0, 0, 0, 0.6);*/
transform: translatey(0px);
}
50% {
/*box-shadow: 0 25px 0px 0px rgba(0, 0, 0, 0.2);*/
transform: translatey(-10px);
}
100% {
/* box-shadow: 0 5px 0px 0px rgba(0, 0, 0, 0.6);*/
transform: translatey(0px);
}
}
@keyframes faceMoving {
0% {
transform: translatey(0px);
transform: rotate(0deg);
}
25% {
transform: translatey(-5px);
transform: rotate(5deg);
}
50% {
transform: translatey(-5px);
transform: rotate(0deg);
}
75% {
transform: translatey(0px);
transform: rotate(-5deg);
}
100% {
transform: translatey(0px);
transform: rotate(0deg);
}
}
svg {
/*animation: float 2s infinite;*/
margin: auto;
margin-top: 30px;
width: 50%;
height: 50%;
}
#Mouth {
animation: faceMoving 2s infinite;
transform-origin: 50% 50%;
position: absolute;
z-index:999;
}
#mouth_1{
transform-origin: 50% 50%;
}
#Face_lamb {
animation: faceMoving 2s infinite;
transform-origin: 50% 50%;
}
html,
body {
font-family: 'Product Sans';
background-color: white;
}
#alien {
margin: auto;
text-align: center;
}