-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
77 lines (63 loc) · 1.02 KB
/
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
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
input[type=file] {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
.not-allowed {
cursor: not-allowed;
}
.pointer {
cursor: pointer;
}
.default {
cursor: default;
}
.overflow-hide {
overflow: hidden;
}
.small-span {
padding: .25rem .5rem;
font-size: .875rem;
line-height: 1.5;
border-radius: .2rem;
height: calc(1.5em + .5rem + 2px);
}
.no-right-border {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.no-left-border {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
/* github-corner */
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}