-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheventPhase.css
More file actions
74 lines (74 loc) · 1.23 KB
/
Copy patheventPhase.css
File metadata and controls
74 lines (74 loc) · 1.23 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
.box{
margin: 50px auto;
transition: all 0.4s ease-in;
background-color: #FFFFFF;
}
html{
border: 1px solid #FF6666;
}
.box#box1{
border: 1px solid #009966;
}
.box#box2{
width: 550px;
height: 550px;
border: 1px solid #006699;
}
.box#box3{
width: 450px;
height: 450px;
border: 1px solid rosybrown;
}
.box#box4{
width: 350px;
height: 350px;
border: 1px solid blueviolet;
}
.box#box5{
width: 250px;
height: 250px;
border: 1px solid crimson;
}
.box#box6{
width: 150px;
height: 150px;
border: 1px solid darkorange;
}
html.current{
background-color: #FF6666;
}
.box#box1.current{
background-color: #009966;
}
.box#box2.current{
background-color: #006699;
}
.box#box3.current{
background-color: rosybrown;
}
.box#box4.current{
background-color: blueviolet;
}
.box#box5.current{
background-color: crimson;
}
.box#box6.current{
background-color: darkorange;
}
.box #box6 h3{
line-height: 100px;
text-align: center;
}
.currentBox {
background-color: #993399;
height: 42px;
position: fixed;
right: 10%;
top: 40%;
width: 140px;
color: #FFFFFF;
font-weight: bold;
font-size: 16px;
text-align: center;
line-height: 42px;
}