-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.css
52 lines (43 loc) · 772 Bytes
/
main.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
canvas {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
border: 1px solid;
top: 20px;
bottom: 20px;
}
footer{
background-color:#aaa;
color: black;
text-align:center;
padding-top: 20px;
padding-bottom: 20px;
font-size: small;
}
.allButFooter {
min-height: calc(100vh - 40px);
}
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@keyframes octocat-wave {
0% {
transform: rotate(0deg);
}
20% {
transform: rotate(-25deg);
}
40% {
transform: rotate(10deg);
}
60% {
transform: rotate(-25deg);
}
80% {
transform: rotate(10deg);
}
100% {
transform: rotate(0deg);
}
}