-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbubbles.css
More file actions
137 lines (119 loc) · 2.61 KB
/
bubbles.css
File metadata and controls
137 lines (119 loc) · 2.61 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
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
/* Container */
.bubblesContainer{
/*margin:0 auto;*/
overflow:hidden;
position:relative;
}
/* Default Bubbles */
.bubblesContainer .bubl{
position:absolute;
z-index:999999;
}
.bubblesContainer a.bubl.default{
display: block;
opacity: 0;
background:#eeeeee;
}
.bubblesContainer div.bubl.default{
background: transparent;
}
.bubblesContainer div.bubl{
background: transparent;
border-radius: 6px;
color: #000000;
display: none;
left: 0;
min-height: 10px;
min-
width: 20px;
opacity: 0;
padding: 11px 7px 13px 9px;
position: absolute;
top: -1000px;
z-index: 999999999;
-webkit-transition: opacity 0.5s ease-in;
-moz-transition: opacity 0.5s ease-in;
-o-transition: opacity 0.5s ease-in;
-ms-transition: opacity 0.5s ease-in;
transition: opacity 0.5s ease-in;
}
/* Close Button */
.bubblesContainer .bubl .close{
position: absolute;
top: 0;
right: 4px;
font-family: tahoma;
cursor: pointer;
font-size: 13px;
}
.bubblesContainer .bubl .close:hover{
color: #880000;
}
/* Default Subtitles */
.subtitles{
position: absolute;
background-color: rgba(0, 0, 0, 0.116094);
bottom: 33px;
font-size: 20px;
color: #FFFFFF;
font-weight: bold;
margin-left: 10%;
text-align: center;
min-width: 20%;
width: 80%;
font-family: Helvetica, Arial, sans-serif;
text-shadow: black 1px 0px 0px;
z-index: 999999;
opacity: 1;
}
/* various bubbles */
.bubblesContainer div.bubbles2,
.bubblesContainer div.bubbles3{
border: 1px solid #f2f2f2;
box-shadow: 3px 3px 5px #444444;
background: #eeeeee;
color: #000000;
font-weight: bold;
opacity: 0.9;
}
.bubblesContainer div.bubbles3{ opacity: 0; }
.bubblesContainer div.bubblesBlack{
border: 2px solid #f2f2f2;
box-shadow: 3px 3px 6px #333333;
background: #111111;
color: #e3e3e3;
opacity: 0.9;
text-shadow: 1px 1px 5px #E0E0E0;
font-weight: normal;
}
.bubblesContainer div.bubblesPink{
border: 2px dotted #eeeeee;
box-shadow: 3px 3px 6px #333333;
background: #F5BCD0;
color: #120000;
font-weight: bold;
opacity: 1;
}
.bubblesContainer div.topTransition{
-moz-transition: top 0.8s ease-in;
-webkit-transition: top 0.8s ease-in;
-o-transition: top 0.8s ease-in;
-ms-transition: top 0.8s ease-in;
}
.bubblesContainer div.fadeOut{
-moz-transition: opacity 0.36s ease-in;
-webkit-transition: opacity 0.36s ease-in;
-o-transition: opacity 0.36s ease-in;
-ms-transition: opacity 0.36s ease-in;
opacity: 0;
}
.bubblesContainer div.fadeIn{
-moz-transition: opacity 0.36s ease-in;
-webkit-transition: opacity 0.36s ease-in;
-o-transition: opacity 0.36s ease-in;
-ms-transition: opacity 0.36s ease-in;
opacity: 0.8;
}
.audio-description{
display:none;
}