-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
139 lines (116 loc) · 1.99 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body{
margin:0;
background: #eee;
font-family: sans-serif;
font-size: 22px;
font-weight: 100;
line-height: 30px;
min-width:1040px;
background-repeat: no-repeat;
overflow-x:hidden;
}
a{
color: #999;
}
a:hover{
color: #ddd;
}
#intro_container, #outro_container{
width:100%; height:550px;
overflow: hidden;
position: relative;
background: #000;
}
#intro, #outro{
position: absolute;
width:0; height:0;
margin: auto;
top:0; bottom:0; left:0; right:0;
}
#intro > #intro_background, #outro > #outro_background{
display: block;
position: absolute;
left:-640px; top:-275px;
width:1280px; height:550px;
border: none;
}
.chapter{
margin: 50px auto;
width:800px;
}
.playable{
width: 100%;
background: #222;
overflow: hidden;
}
.playable > #play_title{
color: #fff;
margin-top: 30px;
text-align: center;
}
.playable iframe{
display: block;
margin: 25px auto;
border: none;
}
iframe[embedded]{
overflow: hidden;
border: none;
margin:40px;
}
#references{
width: 100%;
background: #222;
overflow: hidden;
color:#eee;
}
.instruction{
text-align:center; font-weight:bold; font-size:25px
}
/**
span[cartoon]{
border-bottom:1px dashed black;
}
span[cartoon]:hover{
color:#aaa;
border-color: #aaa;
}
**/
#cartoon_container{
display: none;
position: fixed;
width:0;
height:0;
z-index: 100;
}
#cartoon{
position: absolute;
border-radius: 20px;
width:170px; padding:15px;
background-color: #fff;
-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
-moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
}
#cartoon_arrow{
display: block;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 20px solid #fff;
position: absolute;
top:-20px;
left:90px;
}
#cartoon_arrow[flipped=true]{
display: block;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 20px solid #fff;
position: absolute;
top:-20px;
left:140px;
}