-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
101 lines (86 loc) · 1.48 KB
/
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
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
body {
background-color: #fff;
text-align: center;
color: #fff;
font-family: 'Roboto', sans-serif;
}
input[type='text'] {
font-size: 24px;
}
#p5canvas {
background-color: #2dc5f4;
width: 850px;
height: 1024px;
margin: auto;
margin-top: 250px;
}
#topper {
width: 850px;
margin-top: -220px;
left: 50%;
}
#thanks {
font-size: 1.7em;
font-weight: bold;
white-space: pre-line;
}
#interface {
margin-bottom: 10px;
}
#walk {
font-size: 1.25em;
margin-top: -20px;
margin-bottom: 10px;
}
#go {
background-color: #70327e; /* Green */
border: none;
color: white;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 32px;
font-family: 'Roboto', sans-serif;
}
#number {
background-color: white; /* Green */
border: none;
color: rgb(0, 0, 0);
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 32px;
font-family: 'Roboto', sans-serif;
margin-right: 16px;
}
#number::placeholder {
color: rgb(170, 170, 170);
}
.github-corner:hover .octo-arm {
z-index: 2;
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;
}
}