-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathembed.css
56 lines (45 loc) · 843 Bytes
/
embed.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
#sike-pona * {
font-family: Barlow, Georgia, serif;
}
#sike-pona a {
color: inherit;
}
#sike-pona {
height: 100%;
margin: 0;
box-sizing: border-box;
font-size: 1.1em;
display: flex;
padding: 0.5em;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: center;
}
#sike-pona #left { text-align: left; }
#sike-pona #mid { text-align: center; }
#sike-pona #right { text-align: right; }
#sike-pona #left, #sike-pona #right {
flex-grow: 1;
flex-basis: 0;
}
#sike-pona .tokipona {
height: 1em;
margin: 0 5px;
vertical-align: text-top;
animation: swim .7s infinite forwards linear;
transform-origin: 50% 80%;
}
@keyframes swim {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(10deg);
}
75% {
transform: rotate(-10deg);
}
100% {
transform: rotate(0);
}
}