-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplanechase.css
More file actions
110 lines (95 loc) · 1.95 KB
/
planechase.css
File metadata and controls
110 lines (95 loc) · 1.95 KB
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
/* Copyright 2014-2023 James Hsiao */
.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;
-webkit-box-shadow:inset 0px 1px 0px 0px #54a3f7;
box-shadow:inset 0px 1px 0px 0px #54a3f7;
background-color:#007dc1;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #124d77;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:arial;
font-size:13px;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #154682;
width: 150px;
}
.infoButton {
border-radius: 15px;
background-color: #0cc;
width: auto;
}
.diceButton {
border-radius: 1px;
background-color: #636;
}
#toolbar {
position: fixed;
width: 100%;
height: 32px;
line-height: 32px;
top: 0;
left: 0;
padding: 2px; /* some styling, please note overall height of the object will be 35px due to 5px padding on top/bottom. */
background: #fff; /* some styling */
border-bottom: 1px solid #333; /* some styling */
}
.point {
text-align: center;
}
#plane_div {
text-align: center;
padding: 35px;
margin: 35 auto;
}
#phenomenon, #merging, #chaos {
text-align: center;
padding: 25px;
margin: 35 auto;
}
#phenomenon img:hover, #merging img:hover, #chaos img:hover {
transform: scale(1.5);
transition-delay: 1.5s;
}
.dist-1 img:hover {
transform: scale(1.7);
transition-delay: 1s;
}
.dist-2 img:hover {
transform: scale(2.4);
transition-delay: 1s;
}
.dist-3 img:hover {
transform: scale(3.1);
transition-delay: 1s;
}
.current {
border: 3px solid blue;
}
.current img.hover {
transform: scale(1.5);
transition-delay: 2s;
}
.counter {
font-size: 24px;
font-weight: bold;
text-align: right;
}
.footer {
position: fixed;
text-align: center;
font-size: 0.5vw;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
}
#help_link {
font-size: small;
float: right;
padding: 0 25px;
}