-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathkoala.css
88 lines (74 loc) · 1.26 KB
/
koala.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
html,
body {
margin: 0;
height: 100%;
width: 100%;
font-size: 14px;
font-family: "Helvetica Neue",Helvetica,Arial,Sans-serif;
font-weight: 300;
text-align: center;
cursor: default;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-ms-touch-action: none;
}
div {
cursor: inherit;
}
a {
color: steelBlue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#center {
position: relative;
height: 100%;
width: 512px;
margin: 0 auto;
}
#cont {
position: absolute;
top: 50%;
margin-top: -270px;
width: 512px;
height: 570px;
}
#dot {
width: 512px;
height: 512px;
}
svg,
circle {
pointer-events: none;
}
#next {
padding-top: 30px;
}
#next input {
width: 480px;
border: 1px solid #ccc;
outline: none;
}
#next .err {
color: red;
}
#footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding-top: 18px;
padding-bottom: 2px;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
div.not-found {
text-align: center;
margin-top: 200px;
font-size: 32px;
}