-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
58 lines (52 loc) · 860 Bytes
/
style.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
h1, h2 {
font-family: monospace;
}
h1 {
color: #444;
font-style: italic;
font-size: 2em;
}
#left-column {
float: left;
width: 49%;
}
#right-column {
float: right;
width: 49%;
padding-left: 1em;
border-left: thick double #000000;
}
#logo {
width: 114px;
height: 114px;
animation: logo 3s infinite;
-webkit-animation: logo 3s infinite;
}
@keyframes logo {
0% {
margin-left: 0;
transform: rotate(0deg);
}
50% {
margin-left: calc(100% - 114px - 5px);
transform: rotate(1080deg);
}
100% {
margin-left: 0;
transform: rotate(0deg);
}
}
@-webkit-keyframes logo {
0% {
margin-left: 0;
-webkit-transform: rotate(0deg);
}
50% {
margin-left: calc(100% - 256px - 10px);
-webkit-transform: rotate(360deg);
}
100% {
margin-left: 0;
-webkit-transform: rotate(0deg);
}
}