-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
119 lines (108 loc) · 2.01 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
border: none;
margin: 0;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
canvas {
background: white;
background: radial-gradient(#FFF, #DDD);
transform-origin: 0 0;
width: 100%;
height: 100%;
}
.ui {
display: none;
position: fixed;
z-index: 5;
bottom: 0;
left: 0;
width: 120px;
padding: 10px;
background: rgba(255, 255, 255, 0.7);
}
.ui p {
font-size: 11px;
font-weight: 700;
}
.ui p.zoom {
margin-bottom: 5px;
}
.ui p.zoom span {
margin-right: 5px;
border: solid 1px #777;
cursor: pointer;
border-radius: 2px;
}
.ui p.zoom span.zoomin {
padding: 2px 5px;
}
.ui p.zoom span.zoomout {
padding: 2px 8px;
}
.ui p.zoom span:hover {
background: black;
color: white;
}
.old {
position: absolute;
top: 20px;
right: 20px;
color: white;
cursor: pointer;
font-family: 'Courier New', Courier, monospace;
}
.old span:hover {
font-weight: bold;
}
.logo {
position: absolute;
margin: auto;
top: 50%;
left: 50%;
text-align: center;
}
.logo-img {
width: 230px;
height: 118px;
margin-left: -115px;
margin-top: -59px;
cursor: pointer;
-webkit-animation: fadein 8s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 8s; /* Firefox < 16 */
-ms-animation: fadein 8s; /* Internet Explorer */
-o-animation: fadein 8s; /* Opera < 12.1 */
animation: fadein 8s;
}
.logo-img:hover {
-webkit-filter: drop-shadow(1px 1px 1px dodgerblue) drop-shadow(-1px -1px 1px dodgerblue);
filter: drop-shadow(1px 1px 1px dodgerblue) drop-shadow(-1px -1px 1px dodgerblue);
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}